1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 16:45:08 +00:00

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

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>());
}