Skip to content

Commit

Permalink
remove has_custom_floating_placement from dto
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-berger committed Dec 2, 2024
1 parent 3d96b60 commit 30d8196
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/wm/src/windows/non_tiling_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ impl NonTilingWindow {
display_state: self.display_state(),
border_delta: self.border_delta(),
floating_placement: self.floating_placement(),
has_custom_floating_placement: self.has_custom_floating_placement(),
handle: self.native().handle,
title: self.native().title()?,
class_name: self.native().class_name()?,
Expand Down
1 change: 0 additions & 1 deletion packages/wm/src/windows/tiling_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ impl TilingWindow {
display_state: self.display_state(),
border_delta: self.border_delta(),
floating_placement: self.floating_placement(),
has_custom_floating_placement: self.has_custom_floating_placement(),
handle: self.native().handle,
title: self.native().title()?,
class_name: self.native().class_name()?,
Expand Down
1 change: 0 additions & 1 deletion packages/wm/src/windows/window_dto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ pub struct WindowDto {
pub display_state: DisplayState,
pub border_delta: RectDelta,
pub floating_placement: Rect,
pub has_custom_floating_placement: bool,
pub handle: isize,
pub title: String,
pub class_name: String,
Expand Down

0 comments on commit 30d8196

Please sign in to comment.