gtk: remove code comments and dead code

This commit is contained in:
Thorsten Ball
2023-10-19 16:17:34 +02:00
committed by Mitchell Hashimoto
parent 2d7a81c0db
commit 601eed24c4

View File

@ -299,15 +299,12 @@ pub fn closeSurface(self: *Window, surface: *Surface) void {
paned.removeChildren(); paned.removeChildren();
defer alloc.destroy(paned); defer alloc.destroy(paned);
// Remove children from Paned we were part of.
switch (paned.parent) { switch (paned.parent) {
.tab => |tab| { .tab => |tab| {
// If parent of Paned we belong to is a tab, we can // If parent of Paned we belong to is a tab, we can
// replace the child with the other surface // replace the child with the other surface
tab.removeChild(); tab.removeChild();
tab.setChild(.{ .surface = sibling_surface }); tab.setChild(.{ .surface = sibling_surface });
// try tab.setChildSurface(sibling_surface, sibling_widget);
}, },
.paned => |paned_paned| { .paned => |paned_paned| {
log.info("paned is nested, parent is paned. position={}", .{paned_paned[1]}); log.info("paned is nested, parent is paned. position={}", .{paned_paned[1]});
@ -316,8 +313,6 @@ pub fn closeSurface(self: *Window, surface: *Surface) void {
log.info("paned has no parent", .{}); log.info("paned has no parent", .{});
}, },
} }
// alloc.destroy(paned);
}, },
.none => { .none => {
log.info("no parent, dude?!", .{}); log.info("no parent, dude?!", .{});