mirror of https://github.com/buggins/dlangui.git
update breakpoint mark display in editors; disable window scrollbars by default; update version
This commit is contained in:
parent
57976633bb
commit
24b3b5ed61
|
@ -331,9 +331,9 @@ class Window : CustomEventTarget {
|
||||||
@property bool caretReplace() { return _caretReplace; }
|
@property bool caretReplace() { return _caretReplace; }
|
||||||
|
|
||||||
// window content resize mode
|
// window content resize mode
|
||||||
//protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.resizeWindow;
|
protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.resizeWindow;
|
||||||
//protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.shrinkWidgets;
|
//protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.shrinkWidgets;
|
||||||
protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.scrollWindow;
|
//protected WindowOrContentResizeMode _windowOrContentResizeMode = WindowOrContentResizeMode.scrollWindow;
|
||||||
|
|
||||||
@property WindowOrContentResizeMode windowOrContentResizeMode() {return _windowOrContentResizeMode; }
|
@property WindowOrContentResizeMode windowOrContentResizeMode() {return _windowOrContentResizeMode; }
|
||||||
@property void windowOrContentResizeMode(WindowOrContentResizeMode newMode) {
|
@property void windowOrContentResizeMode(WindowOrContentResizeMode newMode) {
|
||||||
|
|
|
@ -433,10 +433,19 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
|
||||||
rc.bottom -= dh;
|
rc.bottom -= dh;
|
||||||
buf.fillRect(rc, _colorIconBookmark);
|
buf.fillRect(rc, _colorIconBookmark);
|
||||||
} else if (icon.type == LineIconType.breakpoint) {
|
} 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.top += dh;
|
||||||
rc.bottom -= dh;
|
rc.bottom -= dh;
|
||||||
int dw = rc.width / 4;
|
int dw = rc.width / 5;
|
||||||
rc.left += dw;
|
rc.left += dw;
|
||||||
rc.right -= dw;
|
rc.right -= dw;
|
||||||
buf.fillRect(rc, _colorIconBreakpoint);
|
buf.fillRect(rc, _colorIconBreakpoint);
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v0.9.154
|
v0.9.155
|
Loading…
Reference in New Issue