diff --git a/dub.json b/dub.json index 0b27e64..0eac60f 100644 --- a/dub.json +++ b/dub.json @@ -12,7 +12,7 @@ "stringImportPaths": ["views"], "dependencies": { - "dlangui": "==0.9.135", + "dlangui": "==0.9.136", "dsymbol": "~>0.2.9", "dcd": "~>0.9.1" }, diff --git a/src/dlangide/ui/dsourceedit.d b/src/dlangide/ui/dsourceedit.d index a4734d9..4958de1 100644 --- a/src/dlangide/ui/dsourceedit.d +++ b/src/dlangide/ui/dsourceedit.d @@ -39,6 +39,8 @@ interface BookmarkListChangeListener { class DSourceEdit : SourceEdit, EditableContentMarksChangeListener { this(string ID) { super(ID); + _hscrollbarMode = ScrollBarMode.Auto; + _vscrollbarMode = ScrollBarMode.Auto; static if (BACKEND_GUI) { styleId = null; backgroundColor = style.customColor("edit_background"); diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index f7c14c8..e1904bf 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -738,7 +738,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL MenuItem windowItem = new MenuItem(new Action(3, "MENU_WINDOW"c)); //windowItem.add(new Action(30, "MENU_WINDOW_PREFERENCES")); - windowItem.add(ACTION_WINDOW_CLOSE_DOCUMENT, ACTION_WINDOW_CLOSE_ALL_DOCUMENTS, ACTION_WINDOW_SHOW_HOME_SCREEN, ACTION_WINDOW_SHOW_WORKSPACE_EXPLORER, ACTION_WINDOW_SHOW_LOG_WINDOW); + windowItem.add(ACTION_WINDOW_CLOSE_DOCUMENT, ACTION_WINDOW_CLOSE_ALL_DOCUMENTS); + windowItem.addSeparator(); + windowItem.add(ACTION_WINDOW_SHOW_HOME_SCREEN, ACTION_WINDOW_SHOW_WORKSPACE_EXPLORER, ACTION_WINDOW_SHOW_LOG_WINDOW); MenuItem helpItem = new MenuItem(new Action(4, "MENU_HELP"c)); helpItem.add(ACTION_HELP_VIEW_HELP, ACTION_HELP_ABOUT, ACTION_HELP_DONATE); mainMenuItems.add(fileItem); diff --git a/src/dlangide/ui/outputpanel.d b/src/dlangide/ui/outputpanel.d index 5816a9a..acb6495 100644 --- a/src/dlangide/ui/outputpanel.d +++ b/src/dlangide/ui/outputpanel.d @@ -50,6 +50,8 @@ class CompilerLogWidget : LogWidget { /// forward to super c'tor this(string ID) { super(ID); + _hscrollbarMode = ScrollBarMode.Auto; + _vscrollbarMode = ScrollBarMode.Auto; //auto match2 = matchFirst("file.d(123,234): Error: bla bla"d, ctr2); //if (!match2.empty) { // Log.d("found"); @@ -244,6 +246,7 @@ class OutputPanel : DockWindow { void activateTerminalTab(bool clear = false) { static if (ENABLE_INTERNAL_TERMINAL) { + ensureLogVisible(); _tabs.selectTab("TERMINAL"); if (clear) _terminalWidget.resetTerminal(); diff --git a/views/VERSION b/views/VERSION index 1a04b70..6d9bb9b 100644 --- a/views/VERSION +++ b/views/VERSION @@ -1 +1 @@ -v0.7.81 \ No newline at end of file +v0.7.84 \ No newline at end of file