update breakpoint mark display in editors; disable window scrollbars by default; update version

This commit is contained in:
Vadim Lopatin 2017-09-28 12:28:30 +03:00
parent 57976633bb
commit 24b3b5ed61
3 changed files with 14 additions and 5 deletions

View File

@ -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) {

View File

@ -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);

View File

@ -1 +1 @@
v0.9.154
v0.9.155