diff --git a/FastbootUI.cs b/FastbootUI.cs index 140fdb9..ceeb99c 100644 --- a/FastbootUI.cs +++ b/FastbootUI.cs @@ -789,7 +789,7 @@ public static void init() action_lock(); MainWindow.THIS.fastboot_progress_bar.IsIndeterminate = true; Helper.offloadAndRun(beforeLoad, afterLoad); - }), "Zip|*.zip|Payload Binary|*.bin"); + }), "Payload|*.bin;*.zip"); }; listHelper = new Helper.ListHelper(MainWindow.THIS.fastboot_partition_list, diff --git a/PayloadUI.cs b/PayloadUI.cs index 444bb46..f775a53 100644 --- a/PayloadUI.cs +++ b/PayloadUI.cs @@ -106,7 +106,7 @@ static void actionInit() Helper.fileSelect(new Helper.PathSelectCallback(delegate (string ret) { onLoad(ret); - }), "Zip|*.zip|Payload Binary|*.bin"); + }), "Payload|*.bin;*.zip"); }; MainWindow.THIS.payload_remove.Click += delegate