Will look into your map example later...
Hipshot wrote:# Paste to camera doesn't work (didn't work in 1.4 either) or I'm using it the wrong way? alt-v?
Indeed does not work... problem seems to be a shortcut conflict with the Alt+V View menu. I tested this in aeRadiant by using 
Shift+V, alas...
mainframe.cpp, about line 
240
Code: Select all
//  {"PasteToCamera", 'V', RAD_ALT, ID_EDIT_PASTEBRUSHTOCAMERA, "menu_edit_pastebrushtocamera"},
//	Alt+V (0x02) would open the View menu, if that worked... using Shift+V (0x01)
  {"PasteToCamera", 'V', 0x01, ID_EDIT_PASTEBRUSHTOCAMERA, "menu_edit_pastebrushtocamera"},
Alas that does not work... the code seems to be broken (i.e. copy to camera).
xcp, the RAD_ALT seems to be legacy code, I had been thinking of replacing the qualifier codes (0x01, 0x02, 0x04, with variables 
GTK_QSHIFT, GTK_QALT, GTK_QCTRL, e.g. 0x04 = GTK_QSHIFT + GTK_QCTRL ) to make them easier to read.
Hipshot wrote:# Doesn't work to change the grin size on the numeric keypad.
xpc, 
mainframe.cpp, about line 
180, was missing explicit numerical keyboard shortcuts, just needed to add them via:
Code: Select all
  {"ToggleGrid", GDK_KP_0, 0, ID_GRID_TOGGLE, "menu_grid_toggle"},
  {"SetGrid1", GDK_KP_1, 0, ID_GRID_1, "menu_grid_1"},
  {"SetGrid2", GDK_KP_2, 0, ID_GRID_2, "menu_grid_2"},
  {"SetGrid4", GDK_KP_3, 0, ID_GRID_4, "menu_grid_4"},
  {"SetGrid8", GDK_KP_4, 0, ID_GRID_8, "menu_grid_8"},
  {"SetGrid16", GDK_KP_5, 0, ID_GRID_16, "menu_grid_16"},
  {"SetGrid32", GDK_KP_6, 0, ID_GRID_32, "menu_grid_32"},
  {"SetGrid64", GDK_KP_7, 0, ID_GRID_64, "menu_grid_64"},
  {"SetGrid128", GDK_KP_8, 0, ID_GRID_128, "menu_grid_128"},
  {"SetGrid256", GDK_KP_9, 0, ID_GRID_256, "menu_grid_256"},
Works fine in aeRadiant now.