https://bugzilla.novell.com/show_bug.cgi?id=842116 https://bugzilla.novell.com/show_bug.cgi?id=842116#c4 --- Comment #4 from Giacomo Barazzetti <giacomosrv@gmail.com> 2013-09-30 18:05:35 UTC --- I think this code snippet from kde-workspace/kdm/kfrontend/kgreeter.cpp explains well the KDM behaviour: void KGreeter::insertUser(const QImage &default_pix, const QString &username, struct passwd *ps) { [...] QString realname = KStringHandler::from8Bit(ps->pw_gecos); realname.truncate(realname.indexOf(',') & (~0U >> 1)); if (realname.isEmpty() || realname == username) { new UserListViewItem(userView, username, QPixmap::fromImage(p), username); } else { realname.append("\n").append(username); new UserListViewItem(userView, realname, QPixmap::fromImage(p), username); } } (from the code in build service with the various patches to be sure there aren't differences with upstream: https://projects.kde.org/projects/kde/kde-workspace/repository/revisions/mas... ) I mean the newline character, it's the same string/label, not two bad aligned ones. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.