View Single Post
Old 04-03-2022, 10:28 PM   #1
Renate
Onyx-maniac
Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.Renate ought to be getting tired of karma fortunes by now.
 
Posts: 3,940
Karma: 17500001
Join Date: Feb 2012
Device: Nook NST, Glow2, 3, 4, '21, Kobo Aura2, Poke3, Poke5, Go6
Angry Onyx 3.2.1 release screwed with buttons

I just did the 3.2.1 update on my Poke3.
Those knuckleheads mucked with the buttons.

At a low level they made all PgDn to be VolDn and all PgUp to be VolUp
(This is not a keylayout issue.)

Even:
Code:
# input keyevent 92 => 24
# input keyevent 93 => 25
Ok, tomorrow I'll look at it.

Edit: Well, I was too impatient, I wanted to read my book and not be annoyed by dumb stuff.

So, there is probably a setting to disable this (but in any case, the setting changed with the update), but because it cobbles in long press it also delays a simple push until it's released.

It's all in /system/framework/framework-res.apk -> res/raw/keypad.json
Code:
    {
      "keySet": [
        "KEYCODE_PAGE_UP"
      ],
      "shortPressAction": "switchByConf",
      "longPressAction": "KEYCODE_MENU",
      "repeat": false
    },
    {
      "keySet": [
        "KEYCODE_PAGE_DOWN"
      ],
      "shortPressAction": "switchByConf",
      "longPressAction": "fullRefreshScreen",
      "repeat": false
    },
I mentioned elsewhere how to disable this. I'll follow up tomorrow. My book is calling.

Last edited by Renate; 04-03-2022 at 11:02 PM.
Renate is offline   Reply With Quote