diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-07-24 20:00:14 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-07-24 20:00:14 +0000 |
| commit | 67a8312ad1a5b8ef5f60e63ca464013e5a3adeaf (patch) | |
| tree | ac01534adb78b5e055c57c3ee27e9e7bb14b293f /src/ui/dialog | |
| parent | Remove pointer (diff) | |
| download | inkscape-67a8312ad1a5b8ef5f60e63ca464013e5a3adeaf.tar.gz inkscape-67a8312ad1a5b8ef5f60e63ca464013e5a3adeaf.zip | |
Fix a wrongy commit
Diffstat (limited to 'src/ui/dialog')
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 3 | ||||
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index d106e7355..8107b3c30 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -885,7 +885,8 @@ void InkscapePreferences::initPageUI() _page_theme.add_line(false, _("Secondary toolbar icon size:"), _misc_small_secondary, "", _("Set the size for the icons in secondary toolbars to use (requires restart)"), false); } - _apply_theme.init(_("Now (slow)")); + _apply_theme.set_label(_("Now")); + _apply_theme.set_tooltip_text (_("It apply slow")); _page_theme.add_line(false, _("Apply theme"), _apply_theme, "", _("Apply theme"), false); _apply_theme.signal_clicked().connect(sigc::ptr_fun(sp_ui_reload)); this->AddPage(_page_theme, _("Theme"), iter_ui, PREFS_PAGE_UI_THEME); diff --git a/src/ui/dialog/inkscape-preferences.h b/src/ui/dialog/inkscape-preferences.h index 759684905..becd1f5b5 100644 --- a/src/ui/dialog/inkscape-preferences.h +++ b/src/ui/dialog/inkscape-preferences.h @@ -248,7 +248,7 @@ protected: UI::Widget::PrefCombo _misc_small_toolbar; UI::Widget::PrefCombo _misc_small_secondary; UI::Widget::PrefCombo _misc_small_tools; - UI::Widget::PrefButton _apply_theme; + Gtk::Button _apply_theme; UI::Widget::PrefRadioButton _win_dockable; UI::Widget::PrefRadioButton _win_floating; |
