This commit is contained in:
Kovid Goyal 2021-01-27 17:19:06 +05:30
parent 60ce88cf25
commit 36ca3838a6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -123,8 +123,8 @@ def get_macos_shortcut_for(opts: OptionsStub, function: str = 'new_os_window') -
def set_x11_window_icon() -> None: def set_x11_window_icon() -> None:
# max icon size on X11 64bits is 128x128 # max icon size on X11 64bits is 128x128
path = logo_png_file.replace('.', '-128.') path, ext = os.path.splitext(logo_png_file)
set_default_window_icon(path) set_default_window_icon(path + '-128' + ext)
def _run_app(opts: OptionsStub, args: CLIOptions, bad_lines: Sequence[BadLine] = ()) -> None: def _run_app(opts: OptionsStub, args: CLIOptions, bad_lines: Sequence[BadLine] = ()) -> None: