From 24b3b5ed610cc2ee0d948b7b385ab19b112255fc Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Thu, 28 Sep 2017 12:28:30 +0300 Subject: [PATCH] update breakpoint mark display in editors; disable window scrollbars by default; update version --- src/dlangui/platforms/common/platform.d | 4 ++-- src/dlangui/widgets/editors.d | 13 +++++++++++-- views/DLANGUI_VERSION | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/src/dlangui/platforms/common/platform.d b/src/dlangui/platforms/common/platform.d index 0cb9a792..87cef546 100644 --- a/src/dlangui/platforms/common/platform.d +++ b/src/dlangui/platforms/common/platform.d @@ -331,9 +331,9 @@ class Window : CustomEventTarget { @property bool caretReplace() { return _caretReplace; } // window content resize mode - //protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.resizeWindow; + protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.resizeWindow; //protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.shrinkWidgets; - protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.scrollWindow; + //protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.scrollWindow; @property WindowOrContentResizeMode windowOrContentResizeMode() {return _windowOrContentResizeMode; } @property void windowOrContentResizeMode(WindowOrContentResizeMode newMode) { diff --git a/src/dlangui/widgets/editors.d b/src/dlangui/widgets/editors.d index 7ae7d050..6a25d80b 100644 --- a/src/dlangui/widgets/editors.d +++ b/src/dlangui/widgets/editors.d @@ -433,10 +433,19 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction rc.bottom -= dh; buf.fillRect(rc, _colorIconBookmark); } else if (icon.type == LineIconType.breakpoint) { - int dh = rc.height / 8; + if (rc.height > rc.width) { + int delta = rc.height - rc.width; + rc.top += delta / 2; + rc.bottom -= (delta + 1) / 2; + } else { + int delta = rc.width - rc.height; + rc.left += delta / 2; + rc.right -= (delta + 1) / 2; + } + int dh = rc.height / 5; rc.top += dh; rc.bottom -= dh; - int dw = rc.width / 4; + int dw = rc.width / 5; rc.left += dw; rc.right -= dw; buf.fillRect(rc, _colorIconBreakpoint); diff --git a/views/DLANGUI_VERSION b/views/DLANGUI_VERSION index 8ece383a..314fddc6 100644 --- a/views/DLANGUI_VERSION +++ b/views/DLANGUI_VERSION @@ -1 +1 @@ -v0.9.154 \ No newline at end of file +v0.9.155 \ No newline at end of file