remove some unnecessary padding from the filter line

This commit is contained in:
Charles Kerr 2007-12-24 17:38:02 +00:00
parent b1f75d345d
commit 03bc8a5fa7
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ tr_window_new( GtkUIManager * ui_manager, TrCore * core )
/* filter */
toggles = NULL;
h = p->filter = gtk_hbox_new( FALSE, GUI_PAD );
h = p->filter = gtk_hbox_new( FALSE, 0 );
gtk_container_set_border_width( GTK_CONTAINER( h ), GUI_PAD_SMALL );
for( i=0; i<FILTER_MODE_QTY; ++i ) {
const char * mnemonic = _( filter_names[i] );