1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Issue #168: Add note about pkg-config and update packages.

This commit is contained in:
QC 2015-05-25 10:30:32 +02:00
parent 1fbb3b50f8
commit d312090701
2 changed files with 7 additions and 2 deletions

View file

@ -8,16 +8,21 @@
* make * make
* autoconf * autoconf
* automake (1.11.3 or up) * automake (1.11.3 or up)
* pkg-config
* Developer packages of the external libraries * Developer packages of the external libraries
### External libraries ### External libraries
* libxinerama * libxinerama
* libxft * libxft2
* libpango * libpango
* libpangoxft * libpangoxft
* libglib2.0
* libx11 * libx11
On debian based systems, the developer packages are in the form of: `<package>-dev` on rpm based
'<package>-devel'.
### Optional: ### Optional:

View file

@ -239,7 +239,7 @@ int abe_test_action ( KeyBindingAction action, unsigned int mask, KeySym key )
if ( kb->keysym == key ) { if ( kb->keysym == key ) {
// Bits 13 and 14 of the modifiers together are the group number, and // Bits 13 and 14 of the modifiers together are the group number, and
// should be ignored when looking up key bindings // should be ignored when looking up key bindings
if ( ( mask & ~( NumlockMask | (1<<13) | (1<<14) ) ) == kb->modmask ) { if ( ( mask & ~( NumlockMask | ( 1 << 13 ) | ( 1 << 14 ) ) ) == kb->modmask ) {
return TRUE; return TRUE;
} }
} }