Fixed 'use zoom and rotation settings when exporting';

Fixed: enabled was not used for default symbol in symbol font;

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@640 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2007-08-28 22:35:49 +00:00
parent 6dceccd6cb
commit 790e55a35c
6 changed files with 33 additions and 13 deletions
+7
View File
@@ -115,6 +115,13 @@ void GalleryList::onChar(wxKeyEvent& ev) {
update();
sendEvent(EVENT_GALLERY_SELECT);
} break;
case WXK_TAB: {
// send a navigation event to our parent, to select another control
// we need this because tabs are not handled on the set window panels
wxNavigationKeyEvent nev;
nev.SetDirection(!ev.ShiftDown());
GetParent()->ProcessEvent(nev);
} break;
}
}