aboutsummaryrefslogtreecommitdiff
path: root/src/users-service-dbus.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-10-25 17:25:02 -0400
committerConor Curran <conor.curran@canonical.com>2011-10-25 17:25:02 -0400
commit3e2c3690091d05ecdcd29d1ed9f046abd94cee70 (patch)
tree047c4871f9bbf8f9191d494dab4427d0611ede02 /src/users-service-dbus.c
parent9ddd6044078e8af15fe4334063638416120ac733 (diff)
downloadayatana-indicator-session-3e2c3690091d05ecdcd29d1ed9f046abd94cee70.tar.gz
ayatana-indicator-session-3e2c3690091d05ecdcd29d1ed9f046abd94cee70.tar.bz2
ayatana-indicator-session-3e2c3690091d05ecdcd29d1ed9f046abd94cee70.zip
removed the redundant max users limit on the user menu
Diffstat (limited to 'src/users-service-dbus.c')
-rw-r--r--src/users-service-dbus.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/users-service-dbus.c b/src/users-service-dbus.c
index 971b854..76605f6 100644
--- a/src/users-service-dbus.c
+++ b/src/users-service-dbus.c
@@ -719,7 +719,7 @@ sync_users (UsersServiceDbus *self)
g_return_if_fail(IS_USERS_SERVICE_DBUS(self));
UsersServiceDbusPrivate *priv = USERS_SERVICE_DBUS_GET_PRIVATE (self);
- if (priv->count > MINIMUM_USERS && priv->count < MAXIMUM_USERS)
+ if (priv->count > MINIMUM_USERS)
{
GPtrArray *users = NULL;
GError *error = NULL;
@@ -823,12 +823,7 @@ user_added (DBusGProxy *proxy,
UsersServiceDbus *service = (UsersServiceDbus *)user_data;
UsersServiceDbusPrivate *priv = USERS_SERVICE_DBUS_GET_PRIVATE (service);
priv->count++;
-
- if (priv->count < MAXIMUM_USERS)
- {
- sync_users (service);
- }
-
+ sync_users (service);
g_signal_emit (service,
signals[USER_ADDED],
0,