[UIMOD] I want to introduce my mods to you

Ooops. I have MSStore version. Not steam. Anyway you can change it in IGM_AirTraffic.js

constructor() {
    super();
    this.m_dataItems = [];
    this.KeyUpHandler = (event) => {
        if (event.keyCode == 123) {
            this.style.display = 'none';
        }
        if (event.keyCode == 122) {
            this.style.display = '';
        }
    };

Change in if (event.keyCode == 123) 123 to 121 it’s rebind F12 to F10 or you can change keycode to you by page: https://keycode.info/

4 Likes