diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2018-12-29 17:01:57 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2018-12-29 17:01:57 +0000 |
| commit | d2f8c720828a59af7a39aef7a026e6f0a0ddc197 (patch) | |
| tree | 7aad1fd194f672a82501c51b07142738946d2998 /src/ui/dialog/export.cpp | |
| parent | C++ify button widget (diff) | |
| download | inkscape-d2f8c720828a59af7a39aef7a026e6f0a0ddc197.tar.gz inkscape-d2f8c720828a59af7a39aef7a026e6f0a0ddc197.zip | |
Rm deprecated budget widgets
Diffstat (limited to 'src/ui/dialog/export.cpp')
| -rw-r--r-- | src/ui/dialog/export.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/ui/dialog/export.cpp b/src/ui/dialog/export.cpp index 255ecec9d..95b85471f 100644 --- a/src/ui/dialog/export.cpp +++ b/src/ui/dialog/export.cpp @@ -138,8 +138,8 @@ Export::Export () : browse_label(_("_Export As..."), true), browse_image(), batch_box(false, 5), - batch_export(_("B_atch export all selected objects"), _("Export each selected object into its own PNG file, using export hints if any (caution, overwrites without asking!)")), - interlacing(_("Use interlacing"),_("Enables ADAM7 interlacing for PNG output. This results in slightly heavier images, but big images will look better sooner when loading the file")), + batch_export(_("B_atch export all selected objects")), + interlacing(_("Use interlacing")), bitdepth_label(_("Bit depth")), bitdepth_cb(), zlib_label(_("Compression")), @@ -149,8 +149,8 @@ Export::Export () : antialiasing_label(_("Antialiasing")), antialiasing_cb(), hide_box(false, 5), - hide_export(_("Hide all except selected"), _("In the exported image, hide all objects except those that are selected")), - closeWhenDone(_("Close when complete"), _("Once the export completes, close this dialog")), + hide_export(_("Hide all except selected")), + closeWhenDone(_("Close when complete")), button_box(false, 3), _prog(), prog_dlg(nullptr), @@ -162,6 +162,14 @@ Export::Export () : subselChangedConn(), selectModifiedConn() { + batch_export.set_use_underline(); + batch_export.set_tooltip_text(_("Export each selected object into its own PNG file, using export hints if any (caution, overwrites without asking!)")); + hide_export.set_use_underline(); + hide_export.set_tooltip_text(_("In the exported image, hide all objects except those that are selected")); + interlacing.set_use_underline(); + interlacing.set_tooltip_text(_("Enables ADAM7 interlacing for PNG output. This results in slightly heavier images, but big images will look better sooner when loading the file")); + closeWhenDone.set_use_underline(); + closeWhenDone.set_tooltip_text(_("Once the export completes, close this dialog")); prefs = Inkscape::Preferences::get(); singleexport_box.set_border_width(0); |
