Remove input_balloon_time setting

This setting doesn't work on most platforms
including some notification daemons on linux.

Where it does work I think it is bad behavior
to default overriding their defaults anyway.

It's most valuable use was likely win32
tray balloons which no longer exist.
This commit is contained in:
TingPing
2015-02-11 17:58:44 -05:00
parent 9858784eb6
commit 7063406d6c
9 changed files with 9 additions and 23 deletions

View File

@ -60,16 +60,6 @@ should_alert (void)
return TRUE;
}
/* Returns timeout in ms */
static int
get_timeout (void)
{
int timeout = 0;
hexchat_get_prefs (ph, "input_balloon_time", NULL, &timeout);
return timeout * 1000;
}
static gboolean
is_ignored (char *nick)
{
@ -91,7 +81,7 @@ show_notification (const char *title, const char *text)
stripped_title = hexchat_strip (ph, title, -1, 7);
stripped_text = hexchat_strip (ph, text, -1, 7);
notification_backend_show (stripped_title, stripped_text, get_timeout ());
notification_backend_show (stripped_title, stripped_text);
hexchat_free (ph, stripped_title);
hexchat_free (ph, stripped_text);