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
|
@ -39,7 +39,7 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f
|
|||
printOptions.type = print_options::DIVELIST;
|
||||
templateOptions.font_index = 0;
|
||||
templateOptions.font_size = 9;
|
||||
templateOptions.color_palette_index = 0;
|
||||
templateOptions.color_palette_index = ALMOND;
|
||||
templateOptions.line_spacing = 1;
|
||||
custom_colors = almond_colors;
|
||||
} else {
|
||||
|
@ -70,13 +70,13 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f
|
|||
}
|
||||
|
||||
switch (templateOptions.color_palette_index) {
|
||||
case 0: // almond
|
||||
case ALMOND: // almond
|
||||
templateOptions.color_palette = almond_colors;
|
||||
break;
|
||||
case 1: // blueshades
|
||||
case BLUESHADES: // blueshades
|
||||
templateOptions.color_palette = blueshades_colors;
|
||||
break;
|
||||
case 2: // custom
|
||||
case CUSTOM: // custom
|
||||
templateOptions.color_palette = custom_colors;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue