[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] 01/01: Fix progress bar grow direction in deskbar and vertical modes
noreply at xfce.org
noreply at xfce.org
Mon Aug 8 10:51:42 CEST 2016
This is an automated email from the git hooks/post-receive script.
landry pushed a commit to branch master
in repository panel-plugins/xfce4-netload-plugin.
commit a0480b5fad1d53e2a87ceb3d67bd79aa446c8d2a
Author: Harald Judt <h.judt at gmx.at>
Date: Sun Aug 7 18:42:51 2016 +0200
Fix progress bar grow direction in deskbar and vertical modes
---
panel-plugin/netload.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/panel-plugin/netload.c b/panel-plugin/netload.c
index ec4a8c8..81e344c 100644
--- a/panel-plugin/netload.c
+++ b/panel-plugin/netload.c
@@ -349,7 +349,10 @@ static void monitor_set_mode (XfcePanelPlugin *plugin, XfcePanelPluginMode mode,
gtk_label_set_angle(GTK_LABEL(global->monitor->rcv_label), 0);
gtk_label_set_angle(GTK_LABEL(global->monitor->sent_label), 0);
for (i = 0; i < SUM; i++)
+ {
gtk_orientable_set_orientation(GTK_ORIENTABLE(global->monitor->status[i]),GTK_ORIENTATION_HORIZONTAL);
+ gtk_progress_bar_set_inverted(GTK_PROGRESS_BAR(global->monitor->status[i]), FALSE);
+ }
}
else if (mode == XFCE_PANEL_PLUGIN_MODE_VERTICAL)
{
@@ -365,6 +368,7 @@ static void monitor_set_mode (XfcePanelPlugin *plugin, XfcePanelPluginMode mode,
for (i = 0; i < SUM; i++)
{
gtk_orientable_set_orientation(GTK_ORIENTABLE(global->monitor->status[i]),GTK_ORIENTATION_HORIZONTAL);
+ gtk_progress_bar_set_inverted(GTK_PROGRESS_BAR(global->monitor->status[i]), FALSE);
}
}
else /* mode == XFCE_PANEL_PLUGIN_MODE_HORIZONTAL */
@@ -381,7 +385,7 @@ static void monitor_set_mode (XfcePanelPlugin *plugin, XfcePanelPluginMode mode,
for (i = 0; i < SUM; i++)
{
gtk_orientable_set_orientation(GTK_ORIENTABLE(global->monitor->status[i]),GTK_ORIENTATION_VERTICAL);
- gtk_progress_bar_set_inverted(GTK_PROGRESS_BAR(global->monitor->status[i]),TRUE);
+ gtk_progress_bar_set_inverted(GTK_PROGRESS_BAR(global->monitor->status[i]), TRUE);
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list