mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 21:47:00 -04:00
Fix: scrolling on style and set info panels
This commit is contained in:
@@ -196,7 +196,7 @@ END_EVENT_TABLE()
|
|||||||
// ----------------------------------------------------------------------------- : SetInfoEditor
|
// ----------------------------------------------------------------------------- : SetInfoEditor
|
||||||
|
|
||||||
SetInfoEditor::SetInfoEditor(Window* parent, int id, long style)
|
SetInfoEditor::SetInfoEditor(Window* parent, int id, long style)
|
||||||
: NativeLookEditor(parent, id, style)
|
: NativeLookEditor(parent, id, style | wxVSCROLL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
void SetInfoEditor::onChangeSet() {
|
void SetInfoEditor::onChangeSet() {
|
||||||
@@ -213,7 +213,7 @@ Package& SetInfoEditor::getStylePackage() const {
|
|||||||
// ----------------------------------------------------------------------------- : StylingEditor
|
// ----------------------------------------------------------------------------- : StylingEditor
|
||||||
|
|
||||||
StylingEditor::StylingEditor(Window* parent, int id, long style)
|
StylingEditor::StylingEditor(Window* parent, int id, long style)
|
||||||
: NativeLookEditor(parent, id, style)
|
: NativeLookEditor(parent, id, style | wxVSCROLL)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
void StylingEditor::showStylesheet(const StyleSheetP& stylesheet) {
|
void StylingEditor::showStylesheet(const StyleSheetP& stylesheet) {
|
||||||
|
|||||||
Reference in New Issue
Block a user