diff options
author | Stefano Karapetsas <[email protected]> | 2014-01-26 23:18:30 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-01-26 23:18:30 +0100 |
commit | 0f6a8d6027e662868c5888021160cbb9786fd63d (patch) | |
tree | 90a709d222967050f1a9bd3ef5974e65554291d5 /command/command.c | |
parent | 506dc73bec0de720f90766bde945f994f126de08 (diff) | |
download | mate-applets-0f6a8d6027e662868c5888021160cbb9786fd63d.tar.bz2 mate-applets-0f6a8d6027e662868c5888021160cbb9786fd63d.tar.xz |
command: UI improvements
Diffstat (limited to 'command/command.c')
-rw-r--r-- | command/command.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/command/command.c b/command/command.c index 358759d9..8ba6c2c9 100644 --- a/command/command.c +++ b/command/command.c @@ -116,10 +116,13 @@ command_settings_callback (GtkAction *action, CommandApplet *command_applet) GTK_RESPONSE_CLOSE, NULL)); table = gtk_table_new (3, 2, FALSE); + gtk_table_set_row_spacings (table, 6); + gtk_table_set_col_spacings (table, 12); gtk_window_set_default_size (GTK_WINDOW (dialog), 350, 150); widget = gtk_label_new (_("Command:")); + gtk_misc_set_alignment (GTK_MISC (widget), 1.0, 0.5); gtk_table_attach (table, widget, 1, 2, 0, 1, GTK_FILL, GTK_FILL, 0, 0); @@ -129,7 +132,8 @@ command_settings_callback (GtkAction *action, CommandApplet *command_applet) GTK_EXPAND | GTK_FILL | GTK_SHRINK, GTK_FILL, 0, 0); - widget = gtk_label_new (_("Interval:")); + widget = gtk_label_new (_("Interval (seconds):")); + gtk_misc_set_alignment (GTK_MISC (widget), 1.0, 0.5); gtk_table_attach (table, widget, 1, 2, 1, 2, GTK_FILL, GTK_FILL, 0, 0); |