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
Kate
Commits
4e76ae7d
Commit
4e76ae7d
authored
Sep 10, 2021
by
Ilia Kats
Committed by
Christoph Cullmann
Sep 11, 2021
Browse files
remove unnecessary icon rescaling
parent
2ca0128f
Changes
1
Show whitespace changes
Inline
Side-by-side
addons/latexunicodecompletion/completionmodel.cpp
View file @
4e76ae7d
...
...
@@ -147,7 +147,7 @@ QVariant LatexCompletionModel::data(const QModelIndex &index, int role) const
else
if
(
index
.
column
()
==
Postfix
)
return
completion
.
chars
;
}
else
if
(
index
.
column
()
==
Icon
&&
role
==
Qt
::
DecorationRole
)
{
static
const
QIcon
icon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"texcompiler"
))
.
pixmap
(
QSize
(
16
,
16
))
);
static
const
QIcon
icon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"texcompiler"
)));
return
icon
;
}
}
...
...
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