Reset key buffer on reload
To preserve my sanity
This commit is contained in:
parent
1100335ea0
commit
3a5fce339f
|
@ -44,6 +44,7 @@ extern struct pointer_state {
|
|||
|
||||
void start_floating(swayc_t *view);
|
||||
void reset_floating(swayc_t *view);
|
||||
void input_init(void);
|
||||
|
||||
#endif
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "commands.h"
|
||||
#include "config.h"
|
||||
#include "layout.h"
|
||||
#include "input_state.h"
|
||||
|
||||
struct sway_config *config;
|
||||
|
||||
|
@ -147,6 +148,8 @@ _continue:
|
|||
bool load_config(const char *file) {
|
||||
sway_log(L_INFO, "Loading config");
|
||||
|
||||
input_init();
|
||||
|
||||
char *path;
|
||||
if (file != NULL) {
|
||||
path = strdup(file);
|
||||
|
|
|
@ -8,6 +8,13 @@
|
|||
|
||||
static keycode key_state_array[KEY_STATE_MAX_LENGTH];
|
||||
|
||||
void input_init(void) {
|
||||
int i;
|
||||
for (i = 0; i < KEY_STATE_MAX_LENGTH; ++i) {
|
||||
key_state_array[i] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
static uint8_t find_key(keycode key) {
|
||||
int i;
|
||||
for (i = 0; i < KEY_STATE_MAX_LENGTH; ++i) {
|
||||
|
|
Loading…
Reference in a new issue