From 0ec2dbd5838801d1497e285b363d345ab4cbae6a Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Mon, 2 Dec 2024 19:06:27 +0100 Subject: [PATCH] fix(core/unix): HIDPI on macOS 15 [no changelog] --- core/embed/io/display/unix/display_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/io/display/unix/display_driver.c b/core/embed/io/display/unix/display_driver.c index 6b1a8b9ef2..74d69e764b 100644 --- a/core/embed/io/display/unix/display_driver.c +++ b/core/embed/io/display/unix/display_driver.c @@ -117,7 +117,7 @@ bool display_init(display_content_mode_t mode) { #ifdef TREZOR_EMULATOR_RASPI SDL_WINDOW_SHOWN | SDL_WINDOW_FULLSCREEN #else - SDL_WINDOW_SHOWN | SDL_WINDOW_ALLOW_HIGHDPI + SDL_WINDOW_SHOWN #endif ); free(window_title_alloc);