mirror of https://github.com/buggins/dlangui.git
fix #669: dmledit crash on resize
This commit is contained in:
parent
f33e0d2d2f
commit
d465d9f230
|
@ -519,10 +519,14 @@ class ResizerWidget : Widget {
|
||||||
private void resizeAndFireEvent(short newWidth, ResizerEventType type)
|
private void resizeAndFireEvent(short newWidth, ResizerEventType type)
|
||||||
{
|
{
|
||||||
// Respect the dimensions
|
// Respect the dimensions
|
||||||
if(newWidth > minPreviousItemWidth && newWidth < (parent.width - minWidth - minNextItemWidth) &&
|
if( (newWidth > minPreviousItemWidth) && (newWidth < (parent.width - minWidth - minNextItemWidth)) && (_previousWidget is null ||
|
||||||
newWidth > _previousWidget.minWidth() && newWidth < (parent.width - minWidth - _nextWidget.minWidth()))
|
( (newWidth > _previousWidget.minWidth) &&
|
||||||
|
(newWidth < (parent.width - minWidth - _nextWidget.minWidth))
|
||||||
|
)))
|
||||||
{
|
{
|
||||||
_previousWidget.layoutWidth = newWidth;
|
if (_previousWidget !is null) {
|
||||||
|
_previousWidget.layoutWidth = newWidth;
|
||||||
|
}
|
||||||
if (resizeEvent.assigned)
|
if (resizeEvent.assigned)
|
||||||
{
|
{
|
||||||
resizeEvent(this, type, newWidth);
|
resizeEvent(this, type, newWidth);
|
||||||
|
|
Loading…
Reference in New Issue