mirror of
https://github.com/rbreaves/kinto.git
synced 2025-08-05 18:38:26 +02:00
- Fixed possible issue where the browser keymap would not fully undo if switched out with another app category
This commit is contained in:
Binary file not shown.
@@ -495,10 +495,11 @@ int main(void){
|
|||||||
printf("%s: %s\n",current_category,current_app);
|
printf("%s: %s\n",current_category,current_app);
|
||||||
// printf("run: %s\n",run_array[category_idx]);
|
// printf("run: %s\n",run_array[category_idx]);
|
||||||
system(run_array[category_idx]);
|
system(run_array[category_idx]);
|
||||||
ran_onInput = 0;
|
|
||||||
strcpy(run_normal,run_array[category_idx]);
|
strcpy(run_normal,run_array[category_idx]);
|
||||||
|
ran_onInput = 0;
|
||||||
strcpy(run_onInput,run_oninput_array[category_idx]);
|
strcpy(run_onInput,run_oninput_array[category_idx]);
|
||||||
strcpy(run_offInput,run_offinput_array[category_idx]);
|
strcpy(run_offInput,run_offinput_array[category_idx]);
|
||||||
|
system(run_offInput);
|
||||||
for(r = 0; r < config_de_max; r++){
|
for(r = 0; r < config_de_max; r++){
|
||||||
if(config_de_array[category_idx][r] != -1){
|
if(config_de_array[category_idx][r] != -1){
|
||||||
int de_id_idx = in_int(de_id_array, de_len, config_de_array[category_idx][r]);
|
int de_id_idx = in_int(de_id_array, de_len, config_de_array[category_idx][r]);
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
"name":"gui",
|
"name":"gui",
|
||||||
"run":"",
|
"run":"",
|
||||||
"run_onInput":"",
|
"run_onInput":"",
|
||||||
"run_offInput": "",
|
"run_offInput": "killall xbindkeys > /dev/null 2>&1",
|
||||||
"symbols":"",
|
"symbols":"",
|
||||||
"types":"",
|
"types":"",
|
||||||
"de":[],
|
"de":[],
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"name":"term",
|
"name":"term",
|
||||||
"run":"",
|
"run":"",
|
||||||
"run_onInput":"",
|
"run_onInput":"",
|
||||||
"run_offInput": "",
|
"run_offInput": "killall xbindkeys > /dev/null 2>&1",
|
||||||
"symbols":"",
|
"symbols":"",
|
||||||
"types":"",
|
"types":"",
|
||||||
"de":[],
|
"de":[],
|
||||||
|
Reference in New Issue
Block a user