summaryrefslogtreecommitdiffstats
path: root/src/ui/widget
diff options
context:
space:
mode:
authorNathan Lee <2431820-nathanal@users.noreply.gitlab.com>2019-03-11 08:28:13 +0000
committerNathan Lee <2431820-nathanal@users.noreply.gitlab.com>2019-03-11 11:02:11 +0000
commit7934424ce7b4ff5b0929a4a33caf89ea567400e7 (patch)
tree2bb3b8acb8d82ef67f48f14044aa23da834088f6 /src/ui/widget
parentRemove INKSCAPE_PORTABLE_PROFILE_DIR (diff)
downloadinkscape-7934424ce7b4ff5b0929a4a33caf89ea567400e7.tar.gz
inkscape-7934424ce7b4ff5b0929a4a33caf89ea567400e7.zip
Update translation dialog for flipped axis
Flipping icon no longer works, now that we use icon themes. Fixes https://gitlab.com/inkscape/inkscape/issues/127
Diffstat (limited to 'src/ui/widget')
-rw-r--r--src/ui/widget/labelled.cpp5
-rw-r--r--src/ui/widget/labelled.h5
2 files changed, 0 insertions, 10 deletions
diff --git a/src/ui/widget/labelled.cpp b/src/ui/widget/labelled.cpp
index a44e69fcb..dfbc01ddd 100644
--- a/src/ui/widget/labelled.cpp
+++ b/src/ui/widget/labelled.cpp
@@ -74,11 +74,6 @@ Labelled::setTooltipText(const Glib::ustring &tooltip)
_widget->set_tooltip_text(tooltip);
}
-void Labelled::flipIconVertically()
-{
- _icon->set(_icon->get_pixbuf()->flip(false));
-}
-
bool Labelled::on_mnemonic_activate ( bool group_cycling )
{
return _widget->mnemonic_activate ( group_cycling );
diff --git a/src/ui/widget/labelled.h b/src/ui/widget/labelled.h
index e0ffa20c4..01fe86072 100644
--- a/src/ui/widget/labelled.h
+++ b/src/ui/widget/labelled.h
@@ -58,11 +58,6 @@ public:
void setLabelText(const Glib::ustring &str);
void setTooltipText(const Glib::ustring &tooltip);
- /**
- * For matching flipped desktop y-direction
- */
- void flipIconVertically();
-
private:
bool on_mnemonic_activate( bool group_cycling ) override;