summaryrefslogtreecommitdiff
path: root/src/Fl_Tile.cxx
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2024-07-28 14:21:51 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2024-07-28 14:21:51 +0200
commitc0dba15e4ba9d2e4103a4af8c3862c1a7b8b1769 (patch)
treef7b9d4a68dabbb13d8d3dbe368ca94df170a1eef /src/Fl_Tile.cxx
parentd265009b66cbc69ca6edf502dc23199a01d62220 (diff)
Wayland: restore support of Fl_Tile with subwindow widget - cont'd
Diffstat (limited to 'src/Fl_Tile.cxx')
-rw-r--r--src/Fl_Tile.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Fl_Tile.cxx b/src/Fl_Tile.cxx
index 9874a570b..142b286bb 100644
--- a/src/Fl_Tile.cxx
+++ b/src/Fl_Tile.cxx
@@ -482,7 +482,6 @@ void Fl_Tile::move_intersection(int oldx, int oldy, int newx, int newy) {
}
}
-bool Fl_Tile::in_drag_intersection_ = false;
/**
Drags the intersection at (\p oldx,\p oldy) to (\p newx,\p newy).
@@ -534,12 +533,10 @@ void Fl_Tile::drag_intersection(int oldx, int oldy, int newx, int newy) {
}
}
// resize all children that have changed in size
- in_drag_intersection_ = true;
for (i = 0; i < children(); i++) {
Fl_Rect &r = final_size[i];
child(i)->damage_resize(r.x(), r.y(), r.w(), r.h());
}
- in_drag_intersection_ = false;
delete[] final_size;
} else {
move_intersection(oldx, oldy, newx, newy);