this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

image: fix image scaling s/win.height/win.width

+1 -1
+1 -1
src/Image.zig
··· 118 118 // Does the image require horizontal scaling? 119 119 else if (!fit_x and fit_y) 120 120 p_opts.size = .{ 121 - .cols = win.height, 121 + .cols = win.width, 122 122 } 123 123 else if (!fit_x and !fit_y) { 124 124 const diff_x = self.width - win_width_pix;