mirror of
https://github.com/0intro/wmii
synced 2024-11-25 07:09:38 +03:00
12 lines
249 B
C
12 lines
249 B
C
/* Copyright ©2006-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "event.h"
|
|
|
|
void
|
|
event_mappingnotify(XMappingEvent *ev) {
|
|
|
|
/* Why do you need me to tell you this? */
|
|
XRefreshKeyboardMapping(ev);
|
|
}
|