Implement touch interactive resize

This commit is contained in:
Ivan Molodetskikh
2024-10-20 09:13:00 +03:00
parent 26ab4dfb87
commit da3e5c4424
4 changed files with 172 additions and 20 deletions
+4
View File
@@ -2978,6 +2978,10 @@ impl<W: LayoutElement> Workspace<W> {
}
pub fn interactive_resize_begin(&mut self, window: W::Id, edges: ResizeEdge) -> bool {
if self.interactive_resize.is_some() {
return false;
}
let col = self
.columns
.iter_mut()