[Xfce4-commits] <xfce4-taskmanager:master> Tweak default settings
Mike Massonnet
noreply at xfce.org
Tue May 25 12:16:01 CEST 2010
Updating branch refs/heads/master
to 9c021a087c18e29fb8a223655043b5ea1d185dee (commit)
from 43d201a69155470bcef9b351df81c878852e854a (commit)
commit 9c021a087c18e29fb8a223655043b5ea1d185dee
Author: Mike Massonnet <mmassonnet at xfce.org>
Date: Tue May 25 12:13:43 2010 +0200
Tweak default settings
Set default refresh rate to 750ms (makes updating snappier), don't show
with full command lines and turn more precision off.
src/settings.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/settings.c b/src/settings.c
index 35914f7..e4ec0b6 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -82,13 +82,13 @@ xtm_settings_class_init (XtmSettingsClass *klass)
g_object_class_install_property (class, PROP_SHOW_ALL_PROCESSES,
g_param_spec_boolean ("show-all-processes", "ShowAllProcesses", "Show all processes", FALSE, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_MORE_PRECISION,
- g_param_spec_boolean ("more-precision", "MorePrecision", "More precision", TRUE, G_PARAM_READWRITE));
+ g_param_spec_boolean ("more-precision", "MorePrecision", "More precision", FALSE, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_FULL_COMMAND_LINE,
- g_param_spec_boolean ("full-command-line", "FullCommandLine", "Full command line", TRUE, G_PARAM_READWRITE));
+ g_param_spec_boolean ("full-command-line", "FullCommandLine", "Full command line", FALSE, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_SHOW_STATUS_ICON,
g_param_spec_boolean ("show-status-icon", "ShowStatusIcon", "Show/hide the status icon", TRUE, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_REFRESH_RATE,
- g_param_spec_uint ("refresh-rate", "RefreshRate", "Refresh rate in milliseconds", 0, G_MAXUINT, 1000, G_PARAM_READWRITE));
+ g_param_spec_uint ("refresh-rate", "RefreshRate", "Refresh rate in milliseconds", 0, G_MAXUINT, 750, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_COLUMN_UID,
g_param_spec_boolean ("column-uid", "ColumnUID", "Show column UID", FALSE, G_PARAM_READWRITE));
g_object_class_install_property (class, PROP_COLUMN_PID,
More information about the Xfce4-commits
mailing list