We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f1863a commit dd875efCopy full SHA for dd875ef
1 file changed
js/ui/keyboardManager.js
@@ -247,7 +247,10 @@ var SubscriptableFlagIcon = GObject.registerClass({
247
this._imageBin = new St.Bin({ y_align: Clutter.ActorAlign.CENTER });
248
this.add_child(this._imageBin);
249
250
- this._drawingArea = new St.DrawingArea({});
+ this._drawingArea = new St.DrawingArea({
251
+ x_expand: true,
252
+ y_expand: true,
253
+ });
254
this._drawingArea.connect('repaint', this._drawingAreaRepaint.bind(this));
255
256
this.add_child(this._drawingArea);
0 commit comments