add spacer between `level' label and the verbosity level selector. suggested by zebob.

This commit is contained in:
Charles Kerr 2007-12-27 16:21:14 +00:00
parent 670becfdd5
commit 8c99da2b52
1 changed files with 8 additions and 0 deletions

View File

@ -32,6 +32,7 @@
#include <libtransmission/transmission.h>
#include "conf.h"
#include "hig.h"
#include "msgwin.h"
#include "tr_prefs.h"
#include "util.h"
@ -225,6 +226,7 @@ msgwin_create( TrCore * core )
GtkWidget * win, * vbox, * scroll, * text;
GtkWidget * levels;
GtkWidget * toolbar;
GtkWidget * w;
GtkCellRenderer * renderer;
int ii, curlevel;
@ -257,6 +259,12 @@ msgwin_create( TrCore * core )
NULL, _("Select the debug filter level."),
NULL, NULL, NULL, NULL);
w = gtk_alignment_new( 0.0f, 0.0f, 0.0f, 0.0f );
gtk_widget_set_usize( w, GUI_PAD_SMALL, GUI_PAD_SMALL );
gtk_toolbar_append_element( GTK_TOOLBAR(toolbar),
GTK_TOOLBAR_CHILD_WIDGET, w,
NULL, NULL, NULL, NULL, NULL, NULL);
store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_INT);
curlevel = pref_int_get( PREF_KEY_MSGLEVEL );