Skip to content

Commit 58951de

Browse files
increase size of checkboxes to 24
1 parent 4c72b53 commit 58951de

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

libnemo-private/nemo-icon-canvas-item.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
#define LABEL_OFFSET_BESIDES 3
5353
#define LABEL_LINE_SPACING 0
5454
#define SELECTION_CHECKBOX_MARGIN 2
55+
#define SELECTION_CHECKBOX_SCALE 1.5
5556

5657

5758
/* special text height handling
@@ -1305,10 +1306,10 @@ get_selection_checkbox_size (GtkWidget *widget)
13051306
GTK_ICON_SIZE_MENU,
13061307
&width,
13071308
&height)) {
1308-
return MAX (width, height);
1309+
return MAX (width, height) * SELECTION_CHECKBOX_SCALE;
13091310
}
13101311

1311-
return 16.0;
1312+
return 16.0 * SELECTION_CHECKBOX_SCALE;
13121313
}
13131314

13141315
static GdkPixbuf *

0 commit comments

Comments
 (0)