From 3ed66e20d2509d67856f3a3950b5e38086236cd8 Mon Sep 17 00:00:00 2001 From: Pavel Kalian Date: Mon, 17 Jun 2024 20:35:58 -0300 Subject: [PATCH] Fix window height persistency --- src/LauncherUIDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LauncherUIDialog.cpp b/src/LauncherUIDialog.cpp index 1b690b5..f0845ec 100644 --- a/src/LauncherUIDialog.cpp +++ b/src/LauncherUIDialog.cpp @@ -82,7 +82,7 @@ void LauncherUIDialog::AddButton(const wxString& label, const wxString& command) LauncherUIDialog::~LauncherUIDialog() { - GetSize(&m_plugin->m_window_width, &m_plugin->m_window_width); + GetSize(&m_plugin->m_window_width, &m_plugin->m_window_height); GetPosition(&m_plugin->m_window_pos_x, &m_plugin->m_window_pos_y); }