Created
December 6, 2013 01:11
-
-
Save devunt/7817065 to your computer and use it in GitHub Desktop.
A xchat patch to disable annoying keyboard shortcuts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- src_old/fe-gtk/menu.c 2013-12-06 10:07:24.153513364 +0900 | |
+++ src_new/fe-gtk/menu.c 2013-12-06 10:07:09.105417417 +0900 | |
@@ -1562,11 +1562,13 @@ | |
static struct mymenu mymenu[] = { | |
{N_("_XChat"), 0, 0, M_NEWMENU, 0, 0, 1}, | |
- {N_("Network Li_st..."), menu_open_server_list, (char *)&pix_book, M_MENUPIX, 0, 0, 1, GDK_s}, | |
+ //{N_("Network Li_st..."), menu_open_server_list, (char *)&pix_book, M_MENUPIX, 0, 0, 1, GDK_s}, --20131206 devunt | |
+ {N_("Network Li_st..."), menu_open_server_list, (char *)&pix_book, M_MENUPIX, 0, 0, 1}, | |
{0, 0, 0, M_SEP, 0, 0, 0}, | |
{N_("_New"), 0, GTK_STOCK_NEW, M_MENUSUB, 0, 0, 1}, | |
- {N_("Server Tab..."), menu_newserver_tab, 0, M_MENUITEM, 0, 0, 1, GDK_t}, | |
+ //{N_("Server Tab..."), menu_newserver_tab, 0, M_MENUITEM, 0, 0, 1, GDK_t}, --20131206 devunt | |
+ {N_("Server Tab..."), menu_newserver_tab, 0, M_MENUITEM, 0, 0, 1}, | |
{N_("Channel Tab..."), menu_newchannel_tab, 0, M_MENUITEM, 0, 0, 1}, | |
{N_("Server Window..."), menu_newserver_window, 0, M_MENUITEM, 0, 0, 1}, | |
{N_("Channel Window..."), menu_newchannel_window, 0, M_MENUITEM, 0, 0, 1}, | |
@@ -1580,17 +1582,22 @@ | |
#endif | |
{0, 0, 0, M_SEP, 0, 0, 0}, /* 11 */ | |
#define DETACH_OFFSET (12) | |
- {0, menu_detach, GTK_STOCK_REDO, M_MENUSTOCK, 0, 0, 1, GDK_I}, /* 12 */ | |
+ //{0, menu_detach, GTK_STOCK_REDO, M_MENUSTOCK, 0, 0, 1, GDK_I}, /* 12 */ --20131206 devunt | |
+ {0, menu_detach, GTK_STOCK_REDO, M_MENUSTOCK, 0, 0, 1}, /* 12 */ | |
#define CLOSE_OFFSET (13) | |
- {0, menu_close, GTK_STOCK_CLOSE, M_MENUSTOCK, 0, 0, 1, GDK_w}, | |
+ //{0, menu_close, GTK_STOCK_CLOSE, M_MENUSTOCK, 0, 0, 1, GDK_w}, -20131206 devunt | |
+ {0, menu_close, GTK_STOCK_CLOSE, M_MENUSTOCK, 0, 0, 1}, | |
{0, 0, 0, M_SEP, 0, 0, 0}, | |
- {N_("_Quit"), menu_quit, GTK_STOCK_QUIT, M_MENUSTOCK, 0, 0, 1, GDK_q}, /* 15 */ | |
+ //{N_("_Quit"), menu_quit, GTK_STOCK_QUIT, M_MENUSTOCK, 0, 0, 1, GDK_q}, /* 15 */ --20131206 devunt | |
+ {N_("_Quit"), menu_quit, GTK_STOCK_QUIT, M_MENUSTOCK, 0, 0, 1}, /* 15 */ | |
{N_("_View"), 0, 0, M_NEWMENU, 0, 0, 1}, | |
#define MENUBAR_OFFSET (17) | |
- {N_("_Menu Bar"), menu_bar_toggle_cb, 0, M_MENUTOG, MENU_ID_MENUBAR, 0, 1, GDK_F9}, | |
+ //{N_("_Menu Bar"), menu_bar_toggle_cb, 0, M_MENUTOG, MENU_ID_MENUBAR, 0, 1, GDK_F9}, --20131206 devunt | |
+ {N_("_Menu Bar"), menu_bar_toggle_cb, 0, M_MENUTOG, MENU_ID_MENUBAR, 0, 1}, | |
{N_("_Topic Bar"), menu_topicbar_toggle, 0, M_MENUTOG, MENU_ID_TOPICBAR, 0, 1}, | |
- {N_("_User List"), menu_userlist_toggle, 0, M_MENUTOG, MENU_ID_USERLIST, 0, 1, GDK_F7}, | |
+ //{N_("_User List"), menu_userlist_toggle, 0, M_MENUTOG, MENU_ID_USERLIST, 0, 1, GDK_F7}, --20131206 devunt | |
+ {N_("_User List"), menu_userlist_toggle, 0, M_MENUTOG, MENU_ID_USERLIST, 0, 1}, | |
{N_("U_serlist Buttons"), menu_ulbuttons_toggle, 0, M_MENUTOG, MENU_ID_ULBUTTONS, 0, 1}, | |
{N_("M_ode Buttons"), menu_cmbuttons_toggle, 0, M_MENUTOG, MENU_ID_MODEBUTTONS, 0, 1}, | |
{0, 0, 0, M_SEP, 0, 0, 0}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment