Skip to content

Commit

Permalink
Fix rendering logo in about dialog on high DPI screens
Browse files Browse the repository at this point in the history
  • Loading branch information
hluk committed Sep 10, 2017
1 parent 3dbddc4 commit f2ba76e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/copyq.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<qresource prefix="/">
<file>images/icon.svg</file>
<file>images/icon-running.svg</file>
<file alias="images/logo.png">images/icon_128x128.png</file>
<file>images/tab_icon.svg</file>
<file>images/tab_new.svg</file>
<file>images/tab_rename.svg</file>
<file>images/tab_remove.svg</file>
<file>images/fontawesome-webfont.ttf</file>
<file alias="images/logo.png">images/icon_512x512.png</file>
</qresource>
</RCC>
2 changes: 1 addition & 1 deletion src/gui/aboutdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ QString AboutDialog::aboutPage()
"<body>"

"<table><tr valign='middle'>"
"<td><img src=':/images/logo.png' /></td>"
"<td><img src=':/images/logo.png' width='128' /></td>"
"<td>"
"<div id='title'>CopyQ</div>"
"<div id='subtitle'>" + escapeHtml(tr("Clipboard Manager")) + "</div>"
Expand Down

0 comments on commit f2ba76e

Please sign in to comment.