fix #18
This commit is contained in:
parent
d33ed97eb9
commit
0bbe5f2aa0
@ -77,5 +77,6 @@
|
|||||||
</userSettings>
|
</userSettings>
|
||||||
<System.Windows.Forms.ApplicationConfigurationSection>
|
<System.Windows.Forms.ApplicationConfigurationSection>
|
||||||
<add key="DpiAwareness" value="PerMonitorV2" />
|
<add key="DpiAwareness" value="PerMonitorV2" />
|
||||||
|
<add key="EnableWindowsFormsHighDpiAutoResizing" value="false" />
|
||||||
</System.Windows.Forms.ApplicationConfigurationSection>
|
</System.Windows.Forms.ApplicationConfigurationSection>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -511,7 +511,7 @@ namespace Mk0.Software.ImageSorter
|
|||||||
};
|
};
|
||||||
int count = 0;
|
int count = 0;
|
||||||
button.Text = Path.GetFileNameWithoutExtension(folder).ToString() + " (" + count + ")";
|
button.Text = Path.GetFileNameWithoutExtension(folder).ToString() + " (" + count + ")";
|
||||||
button.Size = new Size(225, 30);
|
button.Size = new Size(panelButtons.Width - 33, buttonJumpBack.Height);
|
||||||
button.Click += new EventHandler(MovePicture);
|
button.Click += new EventHandler(MovePicture);
|
||||||
System.Timers.Timer tx = new System.Timers.Timer(35);
|
System.Timers.Timer tx = new System.Timers.Timer(35);
|
||||||
tx.Elapsed += new System.Timers.ElapsedEventHandler((sender1, e1) => ButtonFade(button, tx));
|
tx.Elapsed += new System.Timers.ElapsedEventHandler((sender1, e1) => ButtonFade(button, tx));
|
||||||
|
Loading…
Reference in New Issue
Block a user