Skip to content

Commit 177c4a9

Browse files
committed
format
1 parent 7fad2c7 commit 177c4a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/apprt/gtk/class/window.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1678,13 +1678,13 @@ pub const Window = extern struct {
16781678

16791679
// Try to get saved size
16801680
const saved_size = priv.gsettings.getWindowSize() orelse break :restore;
1681-
1681+
16821682
// Skip if no valid size was saved yet (0, 0 means unset)
16831683
if (saved_size.columns == 0 or saved_size.rows == 0) break :restore;
16841684

16851685
// Get the core surface to calculate pixel dimensions
16861686
const core_surface = surface.core() orelse break :restore;
1687-
1687+
16881688
// Calculate pixel dimensions from grid size
16891689
// pixel_size = (columns/rows * cell_width/height) + padding
16901690
const cell_size = core_surface.size.cell;

0 commit comments

Comments
 (0)