summaryrefslogtreecommitdiffstats
path: root/src/ui
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2008-08-25 11:41:38 +0000
committerjoncruz <joncruz@users.sourceforge.net>2008-08-25 11:41:38 +0000
commit1893d3569387f68ccbda358db86e0087bda05d91 (patch)
treee340e357816209b0febac382a0a41f9f3a56d721 /src/ui
parentfix per SVG spec: bbox for paint servers must be exclusive of a stroke width ... (diff)
downloadinkscape-1893d3569387f68ccbda358db86e0087bda05d91.tar.gz
inkscape-1893d3569387f68ccbda358db86e0087bda05d91.zip
Cleanup of named icon background rendering and added pref for workaround
(bzr r6715)
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/dialog/inkscape-preferences.cpp3
-rw-r--r--src/ui/dialog/inkscape-preferences.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp
index 8a2a44ccc..62c8750e2 100644
--- a/src/ui/dialog/inkscape-preferences.cpp
+++ b/src/ui/dialog/inkscape-preferences.cpp
@@ -1065,6 +1065,9 @@ void InkscapePreferences::initPageMisc()
_page_misc.add_line( false, _("Latency skew:"), _misc_latency_skew, _("(requires restart)"),
_("Factor by which the event clock is skewed from the actual time (0.9766 on some systems)."), false);
+ _misc_namedicon_delay.init( _("Pre-render named icons"), "options.iconrender", "named_nodelay", false);
+ _page_misc.add_line( false, "", _misc_namedicon_delay, "",
+ _("When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification"), true);
this->AddPage(_page_misc, _("Misc"), PREFS_PAGE_MISC);
}
diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h
index 448f30368..2dd0ca4df 100644
--- a/src/ui/dialog/inkscape-preferences.h
+++ b/src/ui/dialog/inkscape-preferences.h
@@ -167,7 +167,7 @@ protected:
PrefSpinButton _importexport_export, _misc_recent, _misc_simpl;
PrefSpinButton _misc_latency_skew;
- PrefCheckButton _misc_comment, _misc_forkvectors, _misc_scripts;
+ PrefCheckButton _misc_comment, _misc_forkvectors, _misc_scripts, _misc_namedicon_delay;
PrefCombo _misc_small_toolbar;
PrefCombo _misc_small_secondary;
PrefCombo _misc_small_tools;