mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Printing: add another color in color palettes
Add another color 'Table cells 2' to the color palette, make all the backgrounds solid white by default. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
This commit is contained in:
parent
1a2f154cf4
commit
1dbe10fe27
5 changed files with 80 additions and 25 deletions
|
|
@ -27,12 +27,14 @@ struct template_options {
|
|||
QColor color3;
|
||||
QColor color4;
|
||||
QColor color5;
|
||||
QColor color6;
|
||||
bool operator!=(const color_palette_struct &other) const {
|
||||
return other.color1 != color1
|
||||
|| other.color2 != color2
|
||||
|| other.color3 != color3
|
||||
|| other.color4 != color4
|
||||
|| other.color5 != color5;
|
||||
|| other.color5 != color5
|
||||
|| other.color6 != color6;
|
||||
}
|
||||
} color_palette;
|
||||
bool operator!=(const template_options &other) const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue