This commit is contained in:
Manuel Kamper 2024-08-17 12:48:48 +02:00
parent d33ed97eb9
commit 0bbe5f2aa0
2 changed files with 2 additions and 1 deletions

View File

@ -77,5 +77,6 @@
</userSettings>
<System.Windows.Forms.ApplicationConfigurationSection>
<add key="DpiAwareness" value="PerMonitorV2" />
<add key="EnableWindowsFormsHighDpiAutoResizing" value="false" />
</System.Windows.Forms.ApplicationConfigurationSection>
</configuration>

View File

@ -511,7 +511,7 @@ namespace Mk0.Software.ImageSorter
};
int count = 0;
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);
System.Timers.Timer tx = new System.Timers.Timer(35);
tx.Elapsed += new System.Timers.ElapsedEventHandler((sender1, e1) => ButtonFade(button, tx));