Skip to content

Commit

Permalink
Merge pull request #292 from plc-user/master
Browse files Browse the repository at this point in the history
hide SVG background checkbox in print preferences
  • Loading branch information
scorpio810 authored May 6, 2024
2 parents 6933896 + b20456d commit 9b4bbfb
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions sources/exportpropertieswidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,14 @@ void ExportPropertiesWidget::setExportProperties(const ExportProperties &export_
l'utiliser en mode export
*/
void ExportPropertiesWidget::setPrintingMode(bool mode) {
dirpath_label -> setVisible(!mode);
dirpath -> setVisible(!mode);
button_browse -> setVisible(!mode);
format_label -> setVisible(!mode);
format -> setVisible(!mode);
export_border -> setVisible(!mode);
export_elements -> setVisible(!mode);
dirpath_label -> setVisible(!mode);
dirpath -> setVisible(!mode);
button_browse -> setVisible(!mode);
format_label -> setVisible(!mode);
format -> setVisible(!mode);
export_border -> setVisible(!mode);
export_elements -> setVisible(!mode);
draw_bg_transparent -> setVisible(!mode);
}

/**
Expand Down

0 comments on commit 9b4bbfb

Please sign in to comment.