Skip to content

Commit cca7cad

Browse files
committed
fix: correct dimensions for OscilloscopePanel in PluginEditor constructor
1 parent a9ea1a7 commit cca7cad

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/PluginEditor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ PluginEditor::PluginEditor(PluginProcessor& p)
66
: dmt::app::AbstractPluginEditor(
77
p,
88
"Oscilloscope",
9-
800,
10-
400,
9+
700,
10+
325,
1111
[&p](dmt::gui::window::Layout& layout) {
1212
layout.addPanel<dmt::gui::panel::OscilloscopePanel<float>>(
1313
0, 0, 1, 1, p.apvts, p.oscilloscopeBuffer);
@@ -16,4 +16,4 @@ PluginEditor::PluginEditor(PluginProcessor& p)
1616
}
1717

1818
//==============================================================================
19-
PluginEditor::~PluginEditor() {}
19+
PluginEditor::~PluginEditor() {}

0 commit comments

Comments
 (0)