Remove uneeded abstraction
This commit is contained in:
parent
fb2639a226
commit
837513d329
@ -6,6 +6,8 @@ const Seat = @import("../seat.zig").Seat;
|
|||||||
/// Close the focused view, if any.
|
/// Close the focused view, if any.
|
||||||
pub fn close_view(seat: *Seat, arg: Arg) void {
|
pub fn close_view(seat: *Seat, arg: Arg) void {
|
||||||
if (seat.focused_view) |view| {
|
if (seat.focused_view) |view| {
|
||||||
view.close();
|
// Note: we don't call arrange() here as it will be called
|
||||||
|
// automatically when the view is unmapped.
|
||||||
|
c.wlr_xdg_toplevel_send_close(view.wlr_xdg_surface);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -136,13 +136,6 @@ pub const View = struct {
|
|||||||
self.output = destination_output;
|
self.output = destination_output;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Send a close event to the view's client
|
|
||||||
pub fn close(self: Self) void {
|
|
||||||
// Note: we don't call arrange() here as it will be called
|
|
||||||
// automatically when the view is unmapped.
|
|
||||||
c.wlr_xdg_toplevel_send_close(self.wlr_xdg_surface);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn handleDestroy(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
fn handleDestroy(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
||||||
const view = @fieldParentPtr(View, "listen_destroy", listener.?);
|
const view = @fieldParentPtr(View, "listen_destroy", listener.?);
|
||||||
const output = view.output;
|
const output = view.output;
|
||||||
|
Loading…
Reference in New Issue
Block a user