From fbda085f4ed1435c873bce8a70c11d06da63060a Mon Sep 17 00:00:00 2001 From: Mike Massonnet Date: Sat, 22 Nov 2014 18:03:32 +0100 Subject: [PATCH] Revert "Do not enforce max length for text/device entries (bug #9869)" This reverts commit 215438c9e674b642cc757b2c1ec04700c8a1141a. --- panel-plugin/netload.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/panel-plugin/netload.c b/panel-plugin/netload.c index bd9168c..fca03a3 100644 --- a/panel-plugin/netload.c +++ b/panel-plugin/netload.c @@ -1025,6 +1025,8 @@ static void monitor_create_options(XfcePanelPlugin *plugin, t_global_monitor *gl gtk_size_group_add_widget(sg, global->monitor->opt_use_label); global->monitor->opt_entry = gtk_entry_new(); + gtk_entry_set_max_length(GTK_ENTRY(global->monitor->opt_entry), + MAX_LENGTH); gtk_entry_set_text(GTK_ENTRY(global->monitor->opt_entry), global->monitor->options.label_text); gtk_widget_show(global->monitor->opt_entry); @@ -1055,6 +1057,8 @@ static void monitor_create_options(XfcePanelPlugin *plugin, t_global_monitor *gl global->monitor->net_entry = gtk_entry_new(); gtk_label_set_mnemonic_widget(GTK_LABEL(device_label), global->monitor->net_entry); + gtk_entry_set_max_length(GTK_ENTRY(global->monitor->net_entry), + MAX_LENGTH); gtk_entry_set_text(GTK_ENTRY(global->monitor->net_entry), global->monitor->options.network_device); gtk_widget_show(global->monitor->opt_entry);