Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
7d4827e3
Commit
7d4827e3
authored
Sep 24, 2020
by
Nate Graham
Browse files
Add missing whitespace in placeholder string
Otherwise you get text like "My Profile(Default)".
parent
86303f57
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/profile/ProfileModel.cpp
View file @
7d4827e3
...
...
@@ -73,7 +73,7 @@ QVariant ProfileModel::data(const QModelIndex& idx, int role) const
case
Qt
::
DisplayRole
:
{
return
QStringLiteral
(
"%1%2"
).
arg
(
profile
->
name
(),
ProfileManager
::
instance
()
->
defaultProfile
()
==
profile
?
i18n
(
"(Default)"
)
:
QString
());
ProfileManager
::
instance
()
->
defaultProfile
()
==
profile
?
i18n
(
"
(Default)"
)
:
QString
());
}
case
Qt
::
DecorationRole
:
return
QIcon
::
fromTheme
(
profile
->
icon
());
case
Qt
::
FontRole
:
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment