mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 09:33:01 +01:00
didnt mean to change that
This commit is contained in:
parent
eb9d4361f0
commit
3804233c21
@ -32,8 +32,8 @@
|
|||||||
/* ASCII key codes */
|
/* ASCII key codes */
|
||||||
#define T_KEY_KILL 0xB /* ctrl-k */
|
#define T_KEY_KILL 0xB /* ctrl-k */
|
||||||
#define T_KEY_DISCARD 0x15 /* ctrl-u */
|
#define T_KEY_DISCARD 0x15 /* ctrl-u */
|
||||||
#define T_KEY_NEXT 0x10 /* ctrl-] */
|
#define T_KEY_NEXT 0x10 /* ctrl-p */
|
||||||
#define T_KEY_PREV 0x0f /* ctrl-[ */
|
#define T_KEY_PREV 0x0f /* ctrl-o */
|
||||||
|
|
||||||
/* Curses foreground colours (background is black) */
|
/* Curses foreground colours (background is black) */
|
||||||
enum {
|
enum {
|
||||||
|
@ -215,7 +215,7 @@ void del_window(ToxWindow *w)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Shows next window when tab or back-tab is pressed */
|
/* Shows next window when tab or back-tab is pressed */
|
||||||
void set_next_window(wint_t ch)
|
void set_next_window(int ch)
|
||||||
{
|
{
|
||||||
ToxWindow *end = windows + MAX_WINDOWS_NUM - 1;
|
ToxWindow *end = windows + MAX_WINDOWS_NUM - 1;
|
||||||
ToxWindow *inf = active_window;
|
ToxWindow *inf = active_window;
|
||||||
@ -349,7 +349,7 @@ void draw_active_window(Tox *m)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (ch == '\t' || ch == KEY_BTAB || ch == T_KEY_NEXT || ch == T_KEY_PREV)
|
if (ch == '\t' || ch == KEY_BTAB || ch == T_KEY_NEXT || ch == T_KEY_PREV)
|
||||||
set_next_window(ch);
|
set_next_window((int) ch);
|
||||||
else if (ch != ERR)
|
else if (ch != ERR)
|
||||||
a->onKey(a, m, ch);
|
a->onKey(a, m, ch);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user