diff options
author | 2023-07-06 08:40:05 +0200 | |
---|---|---|
committer | 2023-07-06 08:40:05 +0200 | |
commit | fb512c3b70fbec6cc63298626d714ef818560519 (patch) | |
tree | f216d551a975d05c836d686f3a71c27805b9ab38 /style | |
parent | 7f805bc5dd9ed38c904d83f9ea931eed6f3234bf (diff) | |
parent | 0964f12db7002f535f8eeda1791ea8962be6e71a (diff) | |
download | iced-fb512c3b70fbec6cc63298626d714ef818560519.tar.gz iced-fb512c3b70fbec6cc63298626d714ef818560519.tar.bz2 iced-fb512c3b70fbec6cc63298626d714ef818560519.zip |
Merge pull request #1865 from jhff/pane_grid_edge_with_dragged_pane
[Feature] Pane Grid: drag & drop panes to the edges
Diffstat (limited to '')
-rw-r--r-- | style/src/pane_grid.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/style/src/pane_grid.rs b/style/src/pane_grid.rs index b99af955..dfdc9186 100644 --- a/style/src/pane_grid.rs +++ b/style/src/pane_grid.rs @@ -31,7 +31,7 @@ pub trait StyleSheet { /// The supported style of the [`StyleSheet`]. type Style: Default; - /// The [`Region`] to draw when a pane is hovered. + /// The [`Appearance`] to draw when a pane is hovered. fn hovered_region(&self, style: &Self::Style) -> Appearance; /// The [`Line`] to draw when a split is picked. |