Aria Moradi

Results 81 comments of Aria Moradi

facing the same issue in my app, and there's a potential fix in there too: https://github.com/Suwayomi/Tachidesk/issues/120 probably some internal api changed and SytemTray is misusing it?

forcing AWT seems to fix the issue? ``` if (System.getProperty("os.name").startsWith("Mac")) { SystemTray.FORCE_TRAY_TYPE = SystemTray.TrayType.Awt } ```

This issue is related to the profiles repo and should be transferred over later.

> ...or extend the current site with a profiles menu item? :) Yep, that can be done, but we need to make metadata files for each profile and handling submissions...

I think it's a necessary/added luxury feature for some games, but more useful on a key basis(i.e. in NES games the Y key(xbox controller) bashes the jump key).

> Looks like this is the same in `antimicro` - present but hidden from users. We have turbo setting for each key, so why is this different? git blame is...

here is where it was added: https://github.com/AntiMicroX/antimicrox/commit/f72fee927751d44ca9a729692ffc5d9c7a92bfc8

![image](https://user-images.githubusercontent.com/8719233/101167142-b6f83180-364e-11eb-8495-9a9695dbc2e9.png) It was hidden from the get go...

```bash ┌─ /tmp/antimicro-2.3.1/antimicrox-2.3.1/src └─ ❯ grep -i keyRepeatGroupBox -r . grep: ./antimicro: binary file matches grep: ./mainsettingsdialog.o: binary file matches ./ui_mainsettingsdialog.h: QGroupBox *keyRepeatGroupBox; ./ui_mainsettingsdialog.h: keyRepeatGroupBox = new QGroupBox(General); ./ui_mainsettingsdialog.h: keyRepeatGroupBox->setObjectName(QString::fromUtf8("keyRepeatGroupBox"));...

and there is turboCheckBox: ![image](https://user-images.githubusercontent.com/8719233/101167967-f70be400-364f-11eb-9078-e2bbd62bb008.png) Maybe the feature was to set a "global turbo rate" value? Shouldn't it have a recommended hard-coded value and let the user override it on...