Forgot to remove some debug prints

This commit is contained in:
Kovid Goyal 2021-11-11 14:42:11 +05:30
parent 880de53d59
commit 09742af92b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 0 additions and 2 deletions

View File

@ -931,7 +931,6 @@ static void
close_os_window(ChildMonitor *self, OSWindow *os_window) {
int w = os_window->window_width, h = os_window->window_height;
if (os_window->before_fullscreen.is_set && is_os_window_fullscreen(os_window)) {
printf("11111111111111 w=%d h=%d bw: %d bh: %d\n", w, h, os_window->before_fullscreen.w, os_window->before_fullscreen.h);
w = os_window->before_fullscreen.w; h = os_window->before_fullscreen.h;
}
destroy_os_window(os_window);

View File

@ -31,7 +31,6 @@ class WindowSizeData(NamedTuple):
def initial_window_size_func(opts: WindowSizeData, cached_values: Dict[str, Any]) -> Callable[[int, int, float, float, float, float], Tuple[int, int]]:
print(cached_values)
if 'window-size' in cached_values and opts.remember_window_size:
ws = cached_values['window-size']
try: