Skip to content

Commit d487efb

Browse files
committed
small polish
1 parent 7bf6884 commit d487efb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/fuzzy.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ fuzzy_match( char **fields, const char *pattern )
189189

190190
GSList *matches = NULL;
191191

192-
printf( "fuzzy_match: pattern = %s\n", pattern );
193192
for( char **p = fields; *p; p++ ) {
194193
const char *field = *p;
195194
Fuzzy *fuzzy = g_new( Fuzzy, 1 );

src/properties.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ properties_add_row( Properties *p,
7575
// can't set alignment in CSS for some reason
7676
gtk_widget_set_halign( t, GTK_ALIGN_START );
7777
gtk_label_set_selectable( GTK_LABEL( t ), TRUE );
78-
gtk_widget_add_css_class( t, "properties-label" );
78+
if( item )
79+
gtk_widget_add_css_class( t, "properties-label" );
7980
gtk_widget_add_css_class( t, p->row_number % 2 ? "odd" : "even" );
8081
gtk_grid_attach( GTK_GRID( p->grid ), t, 0, p->row_number, 1, 1 );
8182

0 commit comments

Comments
 (0)