Skip to content

Commit

Permalink
Merge pull request #74 from ModuleArt/qlib-v2.5.9
Browse files Browse the repository at this point in the history
📚 Quick Library v2.5.9
  • Loading branch information
Beelink authored May 3, 2021
2 parents baba22a + fa50fa7 commit 0bc7a27
Show file tree
Hide file tree
Showing 12 changed files with 874 additions and 866 deletions.
Binary file modified .vs/quick-picture-viewer/v16/.suo
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Debug/QuickLibrary.dll
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Debug/QuickLibrary.pdb
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Debug/quick-picture-viewer.exe
Binary file not shown.
Binary file modified quick-picture-viewer/bin/Debug/quick-picture-viewer.pdb
Binary file not shown.
9 changes: 6 additions & 3 deletions quick-picture-viewer/forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,8 @@ public void openImage(Bitmap bitmap, string directoryName, string fileName)
showNoBtn: true,
noBtnText: LangMan.Get("dont-save"),
noBtnImage: permDeleteBtn.Image,
darkMode: darkMode
darkMode: darkMode,
topMost: TopMost
);
if (window == DialogResult.Yes)
{
Expand Down Expand Up @@ -1574,7 +1575,8 @@ protected override void OnClosing(CancelEventArgs e)
showNoBtn: true,
noBtnText: LangMan.Get("dont-save"),
noBtnImage: permDeleteBtn.Image,
darkMode: darkMode
darkMode: darkMode,
topMost: TopMost
);
if (window == DialogResult.Yes)
{
Expand Down Expand Up @@ -2396,7 +2398,8 @@ private void permDeleteBtn_Click(object sender, EventArgs e)
LangMan.Get("sure-perm-delete"),
yesBtnImage: permDeleteBtn.Image,
windowTitle: LangMan.Get("delete-file"),
darkMode: darkMode
darkMode: darkMode,
topMost: TopMost
);
if (d == DialogResult.Yes)
{
Expand Down
Loading

0 comments on commit 0bc7a27

Please sign in to comment.