mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Print: remove the options for height from display.h's 'struct options'
Not supported. Also the profile in "6 dives per page" doesn't really allow much variations because it looks bad if we scale it down further on A4. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6e4ebe3c54
commit
21a1fc2a4f
2 changed files with 1 additions and 2 deletions
|
@ -44,7 +44,6 @@ struct options {
|
|||
int print_selected;
|
||||
int color_selected;
|
||||
bool notes_up;
|
||||
int profile_height, notes_height, tanks_height;
|
||||
};
|
||||
|
||||
extern unsigned int dc_number;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f)
|
||||
{
|
||||
// options template (are we storing these in the settings?)
|
||||
struct options tempOptions = { options::PRETTY, 0, 2, false, 65, 15, 12 };
|
||||
struct options tempOptions = { options::PRETTY, 0, 2, false };
|
||||
printOptions = tempOptions;
|
||||
|
||||
// create a print layout and pass the printer and options
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue