Skip to content

Commit

Permalink
Improve file selecting
Browse files Browse the repository at this point in the history
  • Loading branch information
libxzr committed Sep 6, 2021
1 parent 3e71a57 commit c46e4b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FastbootUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<fastboot_partition_row>(MainWindow.THIS.fastboot_partition_list,
Expand Down
2 changes: 1 addition & 1 deletion PayloadUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c46e4b7

Please sign in to comment.