From 40bf54e94f2e8d6f33e76a3982114e7dc4c56c6f Mon Sep 17 00:00:00 2001 From: DYefremov Date: Thu, 23 Jan 2020 23:42:28 +0300 Subject: [PATCH] fix size of picons --- app/ui/picons_downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/picons_downloader.py b/app/ui/picons_downloader.py index 44a73279..80b82e26 100644 --- a/app/ui/picons_downloader.py +++ b/app/ui/picons_downloader.py @@ -241,7 +241,7 @@ class PiconsDialog: def resize(self, path): self.show_info_message(get_message("Resizing..."), Gtk.MessageType.INFO) command = "mogrify -resize {}! *.png".format( - "320x240" if self._resize_220_132_radio_button.get_active() else "100x60").split() + "220x132" if self._resize_220_132_radio_button.get_active() else "100x60").split() try: self._current_process = subprocess.Popen(command, universal_newlines=True, cwd=path) self._current_process.wait()