[Xfce4-commits] <xfce4-cpugraph-plugin:master> Fix bug 876
Florian
noreply at xfce.org
Sat Apr 17 16:16:20 CEST 2010
Updating branch refs/heads/master
to 14a9022f547244ed2a8fef113a53bb673d58bd97 (commit)
from f70ff83132af827373ee768e9365d2e4d89e9387 (commit)
commit 14a9022f547244ed2a8fef113a53bb673d58bd97
Author: Florian <frivoal at gmail.com>
Date: Thu Feb 25 09:28:42 2010 +0900
Fix bug 876
Remove restriction on command size. The number of characters in the
command launched when clicking used to be limited to 32. This number was
arbitrary and restrictive. Now, within reason, the string can be
arbirarily long.
panel-plugin/properties.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/panel-plugin/properties.c b/panel-plugin/properties.c
index b3c6cfd..b8d4844 100644
--- a/panel-plugin/properties.c
+++ b/panel-plugin/properties.c
@@ -199,7 +199,6 @@ static void SetupAssociateCommandOption( GtkBox *vbox, GtkSizeGroup *sg, CPUGrap
hbox = CreateOptionLine( vbox, sg, _("Associated command :") );
AssociateCommand = gtk_entry_new();
- gtk_entry_set_max_length( GTK_ENTRY(AssociateCommand), 32 );
gtk_entry_set_text( GTK_ENTRY(AssociateCommand), base->m_AssociateCommand );
gtk_widget_show( AssociateCommand );
gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( AssociateCommand ), FALSE, FALSE, 0 );
More information about the Xfce4-commits
mailing list