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:
Mike FABIAN 2024-06-24 22:24:46 +00:00
commit 197daf1c9d

View file

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