cass00 / enhanced-osk-gnome-ext

Enhanced On-Screen Keyboard for Gnome Shell
http://extensions.gnome.org/extension/6595/enhanced-osk/
21 stars 9 forks source link

Additional Feature #13

Closed radiolaria81 closed 5 months ago

radiolaria81 commented 5 months ago

Hello, i am missing a really important feature. can you please integrate an option to make the osk "always visible"? Or is this even possible? Btw, u did good work and thanks a lot!

kind regards radiolaria

cass00 commented 5 months ago

I do not consider this to be an important feature. You could patch the close function to do nothing:

this._injectionManager.overrideMethod(
  Keyboard.Keyboard.prototype, 'close',
  originalMethod => {
    return function (...args) {
      return;
    }
  });

But this might have some side effects.