From 0f6a8d6027e662868c5888021160cbb9786fd63d Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Sun, 26 Jan 2014 23:18:30 +0100 Subject: command: UI improvements --- command/command.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'command/command.c') 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); -- cgit v1.2.1