diff options
author | Ted Gould <ted@canonical.com> | 2009-03-27 14:18:38 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-03-27 14:18:38 -0500 |
commit | 497702ed6eafa6e35611409df0e92ad24e302c50 (patch) | |
tree | 6b085e0f1d5c1a56fc574a16a09e34e80cd1c74d /libindicate | |
parent | b02adf39127bbb13f4de2f46c30a892efa7e4f1c (diff) | |
download | libayatana-indicator-497702ed6eafa6e35611409df0e92ad24e302c50.tar.gz libayatana-indicator-497702ed6eafa6e35611409df0e92ad24e302c50.tar.bz2 libayatana-indicator-497702ed6eafa6e35611409df0e92ad24e302c50.zip |
Bad truth in the hide function.
Diffstat (limited to 'libindicate')
-rw-r--r-- | libindicate/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libindicate/server.c b/libindicate/server.c index 8a35906..39753d2 100644 --- a/libindicate/server.c +++ b/libindicate/server.c @@ -318,7 +318,7 @@ indicate_server_hide (IndicateServer * server) g_return_if_fail(INDICATE_IS_SERVER(server)); IndicateServerPrivate * priv = INDICATE_SERVER_GET_PRIVATE(server); - if (priv->visible) + if (!priv->visible) return; priv->visible = FALSE; |