From 3c1e047c3cbffe925bd25a1f889d2040227e4ad4 Mon Sep 17 00:00:00 2001 From: NanderTGA <65074195+NanderTGA@users.noreply.github.com> Date: Tue, 17 Oct 2023 19:46:38 +0200 Subject: [PATCH] fix: funkiki island crash fixes #2 --- FunkeySelector/Form1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FunkeySelector/Form1.cs b/FunkeySelector/Form1.cs index 742e2f0..4c72c71 100644 --- a/FunkeySelector/Form1.cs +++ b/FunkeySelector/Form1.cs @@ -175,7 +175,7 @@ private void button5_Click(object sender, EventArgs e) Form6 funkiki = new Form6(); this.Hide(); funkiki.StartPosition = FormStartPosition.CenterParent; - funkiki.Show(this); + funkiki.ShowDialog(this); }