[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 07/23: Fix incorrect comparison for checking icon sizes.
noreply at xfce.org
noreply at xfce.org
Sat Aug 20 18:34:05 CEST 2016
This is an automated email from the git hooks/post-receive script.
gottcode pushed a commit to annotated tag v1.2.1
in repository panel-plugins/xfce4-whiskermenu-plugin.
commit 0840a3390750ad8acaad881ea1bf9c04595abc15
Author: Graeme Gott <graeme at gottcode.org>
Date: Fri Nov 1 16:49:05 2013 -0400
Fix incorrect comparison for checking icon sizes.
---
src/launcher_view.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/launcher_view.cpp b/src/launcher_view.cpp
index e47dcd0..54eb2cf 100644
--- a/src/launcher_view.cpp
+++ b/src/launcher_view.cpp
@@ -181,7 +181,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