Don't render split drag targets in the dock

This commit is contained in:
Max Brunsfeld 2023-01-16 10:24:17 -08:00
parent 96186a3dae
commit b90e1012bf

View file

@ -1452,7 +1452,11 @@ impl View for Pane {
0,
self.active_item_index + 1,
false,
Some(100.),
if self.docked.is_some() {
None
} else {
Some(100.)
},
cx,
{
let toolbar = self.toolbar.clone();