Skip to content

Commit

Permalink
Update renames resouce for image flameshot.svg
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuriy Puchkov committed Oct 15, 2020
1 parent f68cbfb commit 2a138cf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/config/setshortcutwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SetShortcutDialog::SetShortcutDialog(QDialog* parent)
: QDialog(parent)
{
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
setWindowIcon(QIcon(":img/app/org.flameshot.Flameshot.svg"));
setWindowIcon(QIcon(":img/app/flameshot.svg"));
setWindowTitle(tr("Set Shortcut"));
m_ks = QKeySequence();

Expand Down
2 changes: 1 addition & 1 deletion src/config/shortcutswidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ ShortcutsWidget::ShortcutsWidget(QWidget* parent)
: QWidget(parent)
{
setAttribute(Qt::WA_DeleteOnClose);
setWindowIcon(QIcon(":img/app/org.flameshot.Flameshot.svg"));
setWindowIcon(QIcon(":img/app/flameshot.svg"));
setWindowTitle(tr("Hot Keys"));

#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
Expand Down
2 changes: 1 addition & 1 deletion src/tools/storage/imguploader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void ImgUploader::init(const QString& title, const QString& label)

resultStatus = false;
setWindowTitle(title);
setWindowIcon(QIcon(":img/app/org.flameshot.Flameshot.svg"));
setWindowIcon(QIcon(":img/app/flameshot.svg"));

#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
QRect position = frameGeometry();
Expand Down
2 changes: 1 addition & 1 deletion src/tools/storage/s3/imgs3uploader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void ImgS3Uploader::init(const QString& title, const QString& label)

resultStatus = false;
setWindowTitle(title);
setWindowIcon(QIcon(":img/app/org.flameshot.Flameshot.svg"));
setWindowIcon(QIcon(":img/app/flameshot.svg"));
}

QNetworkProxy* ImgS3Uploader::proxy()
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/infowindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ InfoWindow::InfoWindow(QWidget* parent)
void InfoWindow::initLabels()
{
QLabel* icon = new QLabel();
icon->setPixmap(QPixmap(":img/app/org.flameshot.Flameshot.svg"));
icon->setPixmap(QPixmap(":img/app/flameshot.svg"));
icon->setAlignment(Qt::AlignHCenter);
m_layout->addWidget(icon);

Expand Down

0 comments on commit 2a138cf

Please sign in to comment.