From 97f374a189ffd310ba6234f55b5605ecc54cabef Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Mon, 13 Jan 2014 21:39:55 +0100 Subject: [PATCH] Use monospace font in the password generator combo box. --- src/gui/PasswordComboBox.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/PasswordComboBox.cpp b/src/gui/PasswordComboBox.cpp index ca02635c5..af8e9949d 100644 --- a/src/gui/PasswordComboBox.cpp +++ b/src/gui/PasswordComboBox.cpp @@ -44,10 +44,14 @@ void PasswordComboBox::setEcho(bool echo) if (echo) { // add fake item to show visual indication that a popup is available addItem(""); + + setStyleSheet("QComboBox { font-family: monospace; }"); } else { // clear items so the combobox indicates that no popup menu is available clear(); + + setStyleSheet("QComboBox { font-family: initial; }"); } setEditText(current);