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
3d66c5f5
Commit
3d66c5f5
authored
Aug 18, 2020
by
Tomaz Canabrava
Committed by
Kurt Hindenburg
Sep 15, 2020
Browse files
Fix displaying icon on the icon column
parent
1f9ef7e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/profile/ProfileModel.cpp
View file @
3d66c5f5
...
...
@@ -64,7 +64,7 @@ QVariant ProfileModel::data(const QModelIndex& idx, int role) const
case
NAME
:
{
switch
(
role
)
{
case
Qt
::
DisplayRole
:
return
QStringLiteral
(
"%1%2"
).
arg
(
profile
->
name
(),
(
idx
.
row
()
==
0
?
i18n
(
"(Default)"
)
:
QString
()));
case
Qt
::
DecorationRole
:
return
profile
->
icon
();
case
Qt
::
DecorationRole
:
return
QIcon
::
fromTheme
(
profile
->
icon
()
)
;
case
Qt
::
FontRole
:
{
// Default Profile
if
(
idx
.
row
()
==
0
)
{
...
...
Write
Preview
Markdown
is supported
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