mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Printing: don't name color templates with confusing numbers
Use the color_palette enum instead. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
This commit is contained in:
parent
d41d79b549
commit
ed5afc510e
3 changed files with 16 additions and 10 deletions
|
@ -92,13 +92,13 @@ void TemplateEdit::on_colorpalette_currentIndexChanged(int index)
|
|||
{
|
||||
newTemplateOptions.color_palette_index = index;
|
||||
switch (newTemplateOptions.color_palette_index) {
|
||||
case 0: // almond
|
||||
case ALMOND: // almond
|
||||
newTemplateOptions.color_palette = almond_colors;
|
||||
break;
|
||||
case 1: // blueshades
|
||||
case BLUESHADES: // blueshades
|
||||
newTemplateOptions.color_palette = blueshades_colors;
|
||||
break;
|
||||
case 2: // custom
|
||||
case CUSTOM: // custom
|
||||
newTemplateOptions.color_palette = custom_colors;
|
||||
break;
|
||||
}
|
||||
|
@ -147,11 +147,11 @@ void TemplateEdit::colorSelect(QAbstractButton *button)
|
|||
{
|
||||
// reset custom colors palette
|
||||
switch (newTemplateOptions.color_palette_index) {
|
||||
case 0: // almond
|
||||
case ALMOND: // almond
|
||||
newTemplateOptions.color_palette = almond_colors;
|
||||
custom_colors = newTemplateOptions.color_palette;
|
||||
break;
|
||||
case 1: // blueshades
|
||||
case BLUESHADES: // blueshades
|
||||
newTemplateOptions.color_palette = blueshades_colors;
|
||||
custom_colors = newTemplateOptions.color_palette;
|
||||
break;
|
||||
|
@ -181,6 +181,6 @@ void TemplateEdit::colorSelect(QAbstractButton *button)
|
|||
newTemplateOptions.color_palette.color5 = color;
|
||||
break;
|
||||
}
|
||||
newTemplateOptions.color_palette_index = 2;
|
||||
newTemplateOptions.color_palette_index = CUSTOM;
|
||||
updatePreview();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue