1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-14 03:15:49 +02:00

Add a debugger trigger shortcut to debug plugin

This commit is contained in:
chylex 2018-02-06 18:25:11 +01:00
parent a44cb884c4
commit 629f873bb2

View File

@ -42,6 +42,14 @@ enabled(){
col.model.setHasSound(prevSound);
}, 1);
}
// ========================
// D key - trigger debugger
// ========================
else if (e.keyCode === 68){
debugger;
}
}
};
}