From 2c165271bee086c6ee86e90b7bf1326944330402 Mon Sep 17 00:00:00 2001 From: Twan van Laarhoven Date: Mon, 27 Apr 2020 13:22:01 +0200 Subject: [PATCH] Fix: scrolling on style and set info panels --- src/gui/control/native_look_editor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/control/native_look_editor.cpp b/src/gui/control/native_look_editor.cpp index 905884fb..aeba7047 100644 --- a/src/gui/control/native_look_editor.cpp +++ b/src/gui/control/native_look_editor.cpp @@ -196,7 +196,7 @@ END_EVENT_TABLE() // ----------------------------------------------------------------------------- : SetInfoEditor SetInfoEditor::SetInfoEditor(Window* parent, int id, long style) - : NativeLookEditor(parent, id, style) + : NativeLookEditor(parent, id, style | wxVSCROLL) {} void SetInfoEditor::onChangeSet() { @@ -213,7 +213,7 @@ Package& SetInfoEditor::getStylePackage() const { // ----------------------------------------------------------------------------- : StylingEditor StylingEditor::StylingEditor(Window* parent, int id, long style) - : NativeLookEditor(parent, id, style) + : NativeLookEditor(parent, id, style | wxVSCROLL) {} void StylingEditor::showStylesheet(const StyleSheetP& stylesheet) {