mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
Merge branch 'do-not-limit-input-method-mode-indicator' into 'main'
Do not limit the length of the input method mode indicator to only 2 characters See merge request GNOME/gnome-shell!446
This commit is contained in:
commit
197daf1c9d
1 changed files with 1 additions and 1 deletions
|
|
@ -1019,7 +1019,7 @@ class InputSourceIndicator extends PanelMenu.Button {
|
|||
let currentSource = this._inputSourceManager.currentSource;
|
||||
if (currentSource) {
|
||||
let indicatorLabel = this._indicatorLabels[currentSource.index];
|
||||
if (text && text.length > 0 && text.length < 3)
|
||||
if (text && text.length > 0)
|
||||
indicatorLabel.set_text(text);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue