Fix: scrolling on style and set info panels

This commit is contained in:
Twan van Laarhoven
2020-04-27 13:22:01 +02:00
parent 46b5075d7a
commit 2c165271be
+2 -2
View File
@@ -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) {