Append "Private Browsing" to title in private mode

Fixes: https://bugs.launchpad.net/midori/+bug/699969
This commit is contained in:
Paweł Forysiuk 2011-02-03 17:04:20 +01:00 committed by Christian Dywan
parent 7504edaa11
commit 9ab46a3daa

View file

@ -1722,7 +1722,10 @@ main (int argc,
/* libSoup uses threads, so we need to initialize threads. */ /* libSoup uses threads, so we need to initialize threads. */
if (!g_thread_supported ()) g_thread_init (NULL); if (!g_thread_supported ()) g_thread_init (NULL);
sokoke_register_stock_items (); sokoke_register_stock_items ();
g_set_application_name (_("Midori")); if (webapp && config)
g_set_application_name (_("Midori (Private Browsing)"));
else
g_set_application_name (_("Midori"));
#ifdef G_ENABLE_DEBUG #ifdef G_ENABLE_DEBUG
if (startup_timer) if (startup_timer)