Skip to content

Commit

Permalink
fix: [loading] rename Logo name
Browse files Browse the repository at this point in the history
Log: as title
  • Loading branch information
LiHua000 authored and deepin-mozart committed Jul 25, 2024
1 parent 561c84e commit 9292e39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/plugins/core/core.qrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<RCC>
<qresource prefix="/icons/deepin/builtin"/>
<qresource prefix="/icons/deepin">
<file>builtin/actions/backgroundLogo_128px.png</file>
<file>builtin/actions/deepin_unioncode_backgroundLogo_128px.png</file>
<file>builtin/actions/default_plugin_96px.svg</file>
<file>builtin/actions/ide_32px.svg</file>
<file>builtin/actions/logo_128px.png</file>
<file>builtin/actions/deepin_unioncode_logo_128px.png</file>
<file>builtin/dark/icons/new_notification_16px.svg</file>
<file>builtin/light/icons/new_notification_16px.svg</file>
<file>builtin/texts/clear_history_16px.svg</file>
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/core/gui/loadingwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ loadingWidget::loadingWidget(QWidget *parent)
void loadingWidget::setLogo()
{
backgroundLogo = new DLabel(this);
backgroundLogo->setPixmap(QIcon::fromTheme("backgroundLogo").pixmap(128));
backgroundLogo->setPixmap(QIcon::fromTheme("deepin_unioncode_backgroundLogo").pixmap(128));

logo = new DLabel(backgroundLogo);
logo->setPixmap(QIcon::fromTheme("logo").pixmap(128));
logo->setPixmap(QIcon::fromTheme("deepin_unioncode_logo").pixmap(128));

QHBoxLayout *hlayout = new QHBoxLayout;
hlayout->addWidget(logo);
Expand Down

0 comments on commit 9292e39

Please sign in to comment.