GTextEditor: Make sure the scroll corner helper widget is filled in.

This commit is contained in:
Andreas Kling 2019-03-11 12:52:07 +01:00
parent 35098cbde1
commit 10dcd3a47f
Notes: sideshowbarker 2024-07-19 15:05:07 +09:00

View file

@ -28,6 +28,7 @@ GTextEditor::GTextEditor(GWidget* parent)
};
m_corner_widget = new GWidget(this);
m_corner_widget->set_fill_with_background_color(true);
m_lines.append(make<Line>());
}