From f3865214d78248efa49989afa4791ef545ae6d28 Mon Sep 17 00:00:00 2001 From: Chris Pavlina Date: Sat, 6 Jan 2018 22:33:46 -0700 Subject: [PATCH] Hotkey editor: DPI-independent default size --- common/dialogs/dialog_hotkeys_editor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/dialogs/dialog_hotkeys_editor.cpp b/common/dialogs/dialog_hotkeys_editor.cpp index eed8f1ad36..19c435a3f7 100644 --- a/common/dialogs/dialog_hotkeys_editor.cpp +++ b/common/dialogs/dialog_hotkeys_editor.cpp @@ -1,7 +1,7 @@ /* * This program source code file is part of KICAD, a free EDA CAD application. * - * Copyright (C) 1992-2016 Kicad Developers, see CHANGELOG.TXT for contributors. + * Copyright (C) 1992-2018 Kicad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -49,6 +49,7 @@ HOTKEYS_EDITOR_DIALOG::HOTKEYS_EDITOR_DIALOG( EDA_BASE_FRAME* aParent, m_sdbSizerOK->SetDefault(); Layout(); + SetSizeInDU( 240, 120 ); Center(); }