mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-15 02:00:20 +00:00
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:
@@ -23,7 +23,7 @@
|
||||
static gboolean strip_markup = FALSE;
|
||||
|
||||
void
|
||||
notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification_backend_show (const char *title, const char *text)
|
||||
{
|
||||
NotifyNotification *notification;
|
||||
|
||||
@@ -33,7 +33,6 @@ notification_backend_show (const char *title, const char *text, int timeout)
|
||||
notification = notify_notification_new (title, text, "hexchat");
|
||||
notify_notification_set_hint (notification, "desktop-entry", g_variant_new_string ("hexchat"));
|
||||
|
||||
notify_notification_set_timeout (notification, timeout);
|
||||
notify_notification_show (notification, NULL);
|
||||
|
||||
g_object_unref (notification);
|
||||
|
||||
Reference in New Issue
Block a user