Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-20 20:00:34 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-06-20 20:00:51 +0300
commit966dbddf3d4a210df7bd81c500c3ec484a0918e2 (patch)
tree3bcd4cd05841e8a683961202b7a4ffc8bb1ccecc /source/blender/editors/space_sequencer
parent9123595b52b3354082c0eb77134599784df34899 (diff)
Fix sequencer sidebar not being wide enough by default to show timecodes
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/space_sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/space_sequencer.c b/source/blender/editors/space_sequencer/space_sequencer.c
index 1bc21664287..12b446c3f4c 100644
--- a/source/blender/editors/space_sequencer/space_sequencer.c
+++ b/source/blender/editors/space_sequencer/space_sequencer.c
@@ -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;