Skip to content

Commit

Permalink
Replace '*' char by '•' char for passwords
Browse files Browse the repository at this point in the history
  • Loading branch information
oclero committed Jun 24, 2024
1 parent 81cf1e1 commit 791988d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/src/style/QlementineStyle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4469,10 +4469,9 @@ int QlementineStyle::styleHint(StyleHint sh, const QStyleOption* opt, const QWid

// LineEdit
case SH_LineEdit_PasswordCharacter:
break;
//return 2022u; // TODO big bullet unicode
return QChar(0x2022).unicode(); // Bullet.
case SH_LineEdit_PasswordMaskDelay:
return 0;
return 200;

// FocusFrame
case SH_FocusFrame_AboveWidget:
Expand Down

0 comments on commit 791988d

Please sign in to comment.