mirror of https://github.com/buggins/dlangui.git
fixes
This commit is contained in:
parent
75ef00fb15
commit
a749f127f8
|
@ -87,7 +87,7 @@ struct DockSpace {
|
||||||
if (_docks.length) {
|
if (_docks.length) {
|
||||||
if (_space < _minSpace) {
|
if (_space < _minSpace) {
|
||||||
if (_space == 0)
|
if (_space == 0)
|
||||||
_space = (_minSpace + _maxSpace) / 2;
|
_space = _minSpace + (_maxSpace - _minSpace) * 1 / 3;
|
||||||
else
|
else
|
||||||
_space = _minSpace;
|
_space = _minSpace;
|
||||||
}
|
}
|
||||||
|
|
|
@ -246,9 +246,11 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void drawLeftPaneFolding(DrawBuf buf, Rect rc, int line) {
|
protected void drawLeftPaneFolding(DrawBuf buf, Rect rc, int line) {
|
||||||
|
buf.fillRect(rc, 0xF0F0F0);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void drawLeftPaneIcons(DrawBuf buf, Rect rc, int line) {
|
protected void drawLeftPaneIcons(DrawBuf buf, Rect rc, int line) {
|
||||||
|
buf.fillRect(rc, 0xC0C0C0);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void drawLeftPaneModificationMarks(DrawBuf buf, Rect rc, int line) {
|
protected void drawLeftPaneModificationMarks(DrawBuf buf, Rect rc, int line) {
|
||||||
|
|
Loading…
Reference in New Issue