Skip to content

Commit b1779b2

Browse files
authored
Update stack-mouse.c cursor defaults. (#39)
Fixes #38
1 parent 24635c7 commit b1779b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stack-mouse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ stack_mouse_init(struct state *state, GtkWidget *stack)
4646
widget = gtk_label_new(_("Cursor Size"));
4747
gtk_widget_set_halign(widget, GTK_ALIGN_START);
4848
gtk_grid_attach(GTK_GRID(grid), widget, 0, row, 1, 1);
49-
GtkAdjustment *cursor_adjustment = gtk_adjustment_new(0, 0, 512, 1, 2, 0);
49+
GtkAdjustment *cursor_adjustment = gtk_adjustment_new(24, 16, 60, 1, 2, 0);
5050
state->widgets.cursor_size = gtk_spin_button_new(GTK_ADJUSTMENT(cursor_adjustment), 1, 0);
5151
gtk_spin_button_set_value(GTK_SPIN_BUTTON(state->widgets.cursor_size), g_settings_get_int(state->settings, "cursor-size"));
5252
gtk_grid_attach(GTK_GRID(grid), state->widgets.cursor_size, 1, row++, 1, 1);

0 commit comments

Comments
 (0)