Fix sequencer sidebar not being wide enough by default to show timecodes

This commit is contained in:
Brecht Van Lommel 2019-06-20 19:00:34 +02:00
parent 9123595b52
commit 966dbddf3d
1 changed files with 1 additions and 1 deletions

View File

@ -849,7 +849,7 @@ void ED_spacetype_sequencer(void)
/* regions: listview/buttons */
art = MEM_callocN(sizeof(ARegionType), "spacetype sequencer region");
art->regionid = RGN_TYPE_UI;
art->prefsizex = UI_SIDEBAR_PANEL_WIDTH;
art->prefsizex = UI_SIDEBAR_PANEL_WIDTH * 1.3f;
art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_FRAMES;
art->listener = sequencer_buttons_region_listener;
art->init = sequencer_buttons_region_init;