Skip to content

Commit dd875ef

Browse files
committed
keyboardManager.js: Ensure the drawing area fills its parent size
so the keyboard layout subscript can be drawn. Regression from c25b61d.
1 parent 7f1863a commit dd875ef

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

js/ui/keyboardManager.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,10 @@ var SubscriptableFlagIcon = GObject.registerClass({
247247
this._imageBin = new St.Bin({ y_align: Clutter.ActorAlign.CENTER });
248248
this.add_child(this._imageBin);
249249

250-
this._drawingArea = new St.DrawingArea({});
250+
this._drawingArea = new St.DrawingArea({
251+
x_expand: true,
252+
y_expand: true,
253+
});
251254
this._drawingArea.connect('repaint', this._drawingAreaRepaint.bind(this));
252255

253256
this.add_child(this._drawingArea);

0 commit comments

Comments
 (0)