Skip to content

Commit

Permalink
Change default tab_label_length from 99999 to 1000
Browse files Browse the repository at this point in the history
The whole value 99999 doesn't fit into the entry which looks ugly and,
to me, somehow a rounded value like 1000 (which is still sufficient
in terms of "unlimited" number of characters in a tab) looks more pleasing.
  • Loading branch information
techee committed Oct 18, 2023
1 parent 1b06889 commit f412636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -2394,7 +2394,7 @@ void ui_init_prefs(void)
stash_group_add_boolean(group, &interface_prefs.warn_on_project_close,
"warn_on_project_close", TRUE);
stash_group_add_spin_button_integer(group, &interface_prefs.tab_label_len,
"tab_label_length", 99999, "spin_tab_label_len");
"tab_label_length", 1000, "spin_tab_label_len");
}


Expand Down

0 comments on commit f412636

Please sign in to comment.