mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-11 00:23:47 +01:00
14 lines
272 B
C
14 lines
272 B
C
/* See LICENSE file for license and copyright information */
|
|
|
|
#include "shortcuts.h"
|
|
#include "zathura.h"
|
|
|
|
void
|
|
config_load_default()
|
|
{
|
|
if(!Zathura.UI.session)
|
|
return;
|
|
|
|
girara_shortcut_add(Zathura.UI.session, GDK_CONTROL_MASK, GDK_q, NULL, sc_quit, 0, 0, NULL);
|
|
}
|