diff options
author | Christian Hesse <mail@eworm.de> | 2017-03-03 08:09:38 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2017-03-03 08:09:38 +0100 |
commit | f371733fc4669a618bdfe569111a185f230e9955 (patch) | |
tree | 5c3c9e508e5d11f9de5523a2bfd0c1878e754f11 /config.def.h | |
parent | 049feb0216cd7745ff3818b95e7f4a75f738de43 (diff) | |
download | mpd-notification-f371733fc4669a618bdfe569111a185f230e9955.tar.gz mpd-notification-f371733fc4669a618bdfe569111a185f230e9955.tar.zst |
properly handly timeout values
The timeout value in the config file was expected to be in ms...
Fixes #18
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 717e907..0e0bb44 100644 --- a/config.def.h +++ b/config.def.h @@ -9,7 +9,7 @@ #define _CONFIG_H /* how long to display notifications */ -#define NOTIFICATION_TIMEOUT 10000 +#define NOTIFICATION_TIMEOUT 10 /* name of the icon used for notifications */ #define ICON_AUDIO_X_GENERIC "audio-x-generic" |