[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 212/473: Fix incorrect comparison for checking icon sizes.
noreply at xfce.org
noreply at xfce.org
Mon Feb 16 23:56:22 CET 2015
This is an automated email from the git hooks/post-receive script.
gottcode pushed a commit to branch master
in repository panel-plugins/xfce4-whiskermenu-plugin.
commit c364af9902f5c230494a7f827b7cef10d4f660a0
Author: Graeme Gott <graeme at gottcode.org>
Date: Fri Nov 1 16:49:05 2013 -0400
Fix incorrect comparison for checking icon sizes.
---
panel-plugin/launcher-view.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/panel-plugin/launcher-view.cpp b/panel-plugin/launcher-view.cpp
index b817564..4b71df1 100644
--- a/panel-plugin/launcher-view.cpp
+++ b/panel-plugin/launcher-view.cpp
@@ -182,7 +182,7 @@ void LauncherView::reload_icon_size()
// Force exo to reload SVG icons
int size = 0;
g_object_get(m_icon_renderer, "size", &size, NULL);
- if (size != f_icon_size)
+ if (size != f_icon_size.get_size())
{
gtk_tree_view_remove_column(m_view, m_column);
create_column();
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list