From 965820801f5cdbd68f25702195f42433ed249d77 Mon Sep 17 00:00:00 2001 From: eshe Date: Sat, 29 May 2010 17:46:48 +0100 Subject: [PATCH 1/1] Changed password to show as asterisks instead of real letters in settings. --- src/gui/settingsdialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/settingsdialog.cpp b/src/gui/settingsdialog.cpp index 626a0b2..9b9ed10 100644 --- a/src/gui/settingsdialog.cpp +++ b/src/gui/settingsdialog.cpp @@ -52,6 +52,7 @@ autostartSelector_(0) QLabel* passwordLabel = new QLabel(tr("Eniro password")); passwordInput_ = new QLineEdit(Settings::instance()->get("eniro_password")); + passwordInput_->setEchoMode(QLineEdit::Password); QLabel* cacheLabel = new QLabel(tr("Cache size (numbers)")); cacheInput_ = new QLineEdit(Settings::instance()->get("cache_size")); -- 1.7.9.5