--User changes

Add the ability to click the right mouse button and drag to adjust values in spinners.
 Filling the palette controls will now also select the proper palette filename (if not empty) in the combo box.
 Allow for toggling row and column of affine tables.

--Bug fixes
 Fix tab tool tips again.
 Fix palette list switching.

--Code changes
 Palettes now keep the filename they originated from as a member.
 Refactor table row and column cell toggling into their own functions.
 Do not force random select on palette combo index change.
This commit is contained in:
mfeemster 2015-05-15 18:52:31 -07:00
parent 2561708ae0
commit 3c51e58379

View File

@ -327,6 +327,7 @@ void Fractorium::ResetPaletteControls()
/// Set the index of the palette file combo box. /// Set the index of the palette file combo box.
/// This is for display purposes only so the user can see which file, if any, /// This is for display purposes only so the user can see which file, if any,
/// the current palette came from. /// the current palette came from.
/// For embedded palettes with no filename, this will have no effect.
/// </summary> /// </summary>
/// <param name="filename">The string to set the index to</param> /// <param name="filename">The string to set the index to</param>
void Fractorium::SetPaletteFileComboIndex(const string& filename) void Fractorium::SetPaletteFileComboIndex(const string& filename)