From 0bbe5f2aa092c26a4bd29d7be3adac5a603448af Mon Sep 17 00:00:00 2001 From: Manuel Kamper Date: Sat, 17 Aug 2024 12:48:48 +0200 Subject: [PATCH] fix #18 --- Mk0.Software.ImageSorter/App.config | 1 + Mk0.Software.ImageSorter/Main.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Mk0.Software.ImageSorter/App.config b/Mk0.Software.ImageSorter/App.config index 547ff06..7440090 100644 --- a/Mk0.Software.ImageSorter/App.config +++ b/Mk0.Software.ImageSorter/App.config @@ -77,5 +77,6 @@ + diff --git a/Mk0.Software.ImageSorter/Main.cs b/Mk0.Software.ImageSorter/Main.cs index db3ff69..dc59e31 100644 --- a/Mk0.Software.ImageSorter/Main.cs +++ b/Mk0.Software.ImageSorter/Main.cs @@ -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));