Skip to content

Commit d1dc380

Browse files
committed
v2.2.3
1 parent daf4140 commit d1dc380

34 files changed

+31
-20
lines changed

.vs/quick-picture-viewer/v16/.suo

8.5 KB
Binary file not shown.
4 KB
Binary file not shown.
-32 KB
Binary file not shown.
-3.83 MB
Binary file not shown.
722 Bytes
Binary file not shown.

inno-setup/quick-picture-viewer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Quick Picture Viewer"
5-
#define MyAppVersion "2.2.2"
5+
#define MyAppVersion "2.2.3"
66
#define MyAppPublisher "Module Art"
77
#define MyAppURL "https://moduleart.github.io"
88
#define MyAppExeName "quick-picture-viewer.exe"

quick-picture-viewer/MainForm.Designer.cs

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quick-picture-viewer/MainForm.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2232,5 +2232,15 @@ private void MainForm_FormClosed(object sender, FormClosedEventArgs e)
22322232
NewWindow();
22332233
}
22342234
}
2235+
2236+
private void toolStrip1_MouseDown(object sender, MouseEventArgs e)
2237+
{
2238+
if (e.Button == MouseButtons.Left)
2239+
{
2240+
Cursor.Current = Cursors.SizeAll;
2241+
NativeMethodsManager.ReleaseCapture();
2242+
NativeMethodsManager.SendMessage(Handle, 0xA1, 0x2, 0);
2243+
}
2244+
}
22352245
}
22362246
}

quick-picture-viewer/MainForm.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,7 @@
12901290
<value>picturePanel</value>
12911291
</data>
12921292
<data name="&gt;&gt;picturePanel.Type" xml:space="preserve">
1293-
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.1.0, Culture=neutral, PublicKeyToken=null</value>
1293+
<value>quick_picture_viewer.CustomPanel, quick-picture-viewer, Version=2.2.2.0, Culture=neutral, PublicKeyToken=null</value>
12941294
</data>
12951295
<data name="&gt;&gt;picturePanel.Parent" xml:space="preserve">
12961296
<value>$this</value>

quick-picture-viewer/PluginMenuItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ string configureText
2323
)
2424
{
2525
this.Text = func.title.Get(Properties.Settings.Default.Language);
26-
this.dllPath = Path.Combine(Directory.GetCurrentDirectory(), "plugins", pi.name, pi.name + ".dll");
26+
this.dllPath = Path.Combine(PluginManager.pluginsFolder, pi.name, pi.name + ".dll");
2727

2828
if (func.props.imageRequired)
2929
{

0 commit comments

Comments
 (0)