mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
keyboard: Drop dbus naming semantics from Set[Entry|Cursor]Location
Those functions don't proxy dbus method calls anymore, so just drop the uppercase 'S'. https://bugzilla.gnome.org/show_bug.cgi?id=777342
This commit is contained in:
parent
c324395ee6
commit
41baf0fc74
1 changed files with 4 additions and 4 deletions
|
|
@ -247,8 +247,8 @@ const Keyboard = new Lang.Class({
|
|||
if (caretRect.width == 0 && caretRect.height == 0)
|
||||
caretRect = focusRect;
|
||||
|
||||
this.SetEntryLocation(focusRect.x, focusRect.y, focusRect.width, focusRect.height);
|
||||
this.SetCursorLocation(caretRect.x, caretRect.y, caretRect.width, caretRect.height);
|
||||
this.setEntryLocation(focusRect.x, focusRect.y, focusRect.width, focusRect.height);
|
||||
this.setCursorLocation(caretRect.x, caretRect.y, caretRect.width, caretRect.height);
|
||||
} catch (e) {
|
||||
log('Error updating caret position for OSK: ' + e.message);
|
||||
}
|
||||
|
|
@ -716,14 +716,14 @@ const Keyboard = new Lang.Class({
|
|||
this._showIdleId = 0;
|
||||
},
|
||||
|
||||
SetCursorLocation: function(x, y, w, h) {
|
||||
setCursorLocation: function(x, y, w, h) {
|
||||
if (!this._enableKeyboard)
|
||||
return;
|
||||
|
||||
// this._setLocation(x, y);
|
||||
},
|
||||
|
||||
SetEntryLocation: function(x, y, w, h) {
|
||||
setEntryLocation: function(x, y, w, h) {
|
||||
if (!this._enableKeyboard)
|
||||
return;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue