Skip to content

Commit

Permalink
Fixed minimum windows size.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZiwKerman committed Apr 24, 2016
1 parent 7cc8b27 commit 4d62f84
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified IRSequencer/.vs/IRSequencer/IRSequencer.scgdat
Binary file not shown.
2 changes: 1 addition & 1 deletion IRSequencer/IRSequencer/Gui/SequencerGUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ private void InitEditorWindow(bool startSolid = true)

var resizeHandler = editorFooterButtons.GetChild("ResizeHandle").AddComponent<PanelResizer>();
resizeHandler.rectTransform = _editorWindow.transform as RectTransform;
resizeHandler.minSize = new Vector2(450, 365);
resizeHandler.minSize = new Vector2(470, 365);
resizeHandler.maxSize = new Vector2(2000, 1600);

var leftPane = _editorWindow.GetChild("WindowContent").GetChild("Panes").GetChild("LeftPane").GetChild("CommandZone");
Expand Down

0 comments on commit 4d62f84

Please sign in to comment.