Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Replaced spaces in asset filenames with underscores.
Browse files Browse the repository at this point in the history
  • Loading branch information
DaneelTrevize committed Nov 20, 2018
1 parent 43ef269 commit c11c0ab
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 24 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
24 changes: 12 additions & 12 deletions resources.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@
<file alias="ShaperItemSymbol.png">assets/ShaperItemSymbol.png</file>
</qresource>
<qresource prefix="/backgrounds">
<file alias="ElderBackground 1x1.png">assets/ElderBackground 1x1.png</file>
<file alias="ElderBackground 1x3.png">assets/ElderBackground 1x3.png</file>
<file alias="ElderBackground 1x4.png">assets/ElderBackground 1x4.png</file>
<file alias="ElderBackground 2x2.png">assets/ElderBackground 2x2.png</file>
<file alias="ElderBackground 2x3.png">assets/ElderBackground 2x3.png</file>
<file alias="ElderBackground 2x4.png">assets/ElderBackground 2x4.png</file>
<file alias="ShaperBackground 1x1.png">assets/ShaperBackground 1x1.png</file>
<file alias="ShaperBackground 1x3.png">assets/ShaperBackground 1x3.png</file>
<file alias="ShaperBackground 1x4.png">assets/ShaperBackground 1x4.png</file>
<file alias="ShaperBackground 2x2.png">assets/ShaperBackground 2x2.png</file>
<file alias="ShaperBackground 2x3.png">assets/ShaperBackground 2x3.png</file>
<file alias="ShaperBackground 2x4.png">assets/ShaperBackground 2x4.png</file>
<file alias="ElderBackground_1x1.png">assets/ElderBackground_1x1.png</file>
<file alias="ElderBackground_1x3.png">assets/ElderBackground_1x3.png</file>
<file alias="ElderBackground_1x4.png">assets/ElderBackground_1x4.png</file>
<file alias="ElderBackground_2x2.png">assets/ElderBackground_2x2.png</file>
<file alias="ElderBackground_2x3.png">assets/ElderBackground_2x3.png</file>
<file alias="ElderBackground_2x4.png">assets/ElderBackground_2x4.png</file>
<file alias="ShaperBackground_1x1.png">assets/ShaperBackground_1x1.png</file>
<file alias="ShaperBackground_1x3.png">assets/ShaperBackground_1x3.png</file>
<file alias="ShaperBackground_1x4.png">assets/ShaperBackground_1x4.png</file>
<file alias="ShaperBackground_2x2.png">assets/ShaperBackground_2x2.png</file>
<file alias="ShaperBackground_2x3.png">assets/ShaperBackground_2x3.png</file>
<file alias="ShaperBackground_2x4.png">assets/ShaperBackground_2x4.png</file>
</qresource>
</RCC>
24 changes: 12 additions & 12 deletions src/itemtooltip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@

static const QImage link_h(":/sockets/linkH.png");
static const QImage link_v(":/sockets/linkV.png");
static const QImage elder_1x1(":/backgrounds/ElderBackground 1x1.png");
static const QImage elder_1x3(":/backgrounds/ElderBackground 1x3.png");
static const QImage elder_1x4(":/backgrounds/ElderBackground 1x4.png");
static const QImage elder_2x2(":/backgrounds/ElderBackground 2x2.png");
static const QImage elder_2x3(":/backgrounds/ElderBackground 2x3.png");
static const QImage elder_2x4(":/backgrounds/ElderBackground 2x4.png");
static const QImage shaper_1x1(":/backgrounds/ShaperBackground 1x1.png");
static const QImage shaper_1x3(":/backgrounds/ShaperBackground 1x3.png");
static const QImage shaper_1x4(":/backgrounds/ShaperBackground 1x4.png");
static const QImage shaper_2x2(":/backgrounds/ShaperBackground 2x2.png");
static const QImage shaper_2x3(":/backgrounds/ShaperBackground 2x3.png");
static const QImage shaper_2x4(":/backgrounds/ShaperBackground 2x4.png");
static const QImage elder_1x1(":/backgrounds/ElderBackground_1x1.png");
static const QImage elder_1x3(":/backgrounds/ElderBackground_1x3.png");
static const QImage elder_1x4(":/backgrounds/ElderBackground_1x4.png");
static const QImage elder_2x2(":/backgrounds/ElderBackground_2x2.png");
static const QImage elder_2x3(":/backgrounds/ElderBackground_2x3.png");
static const QImage elder_2x4(":/backgrounds/ElderBackground_2x4.png");
static const QImage shaper_1x1(":/backgrounds/ShaperBackground_1x1.png");
static const QImage shaper_1x3(":/backgrounds/ShaperBackground_1x3.png");
static const QImage shaper_1x4(":/backgrounds/ShaperBackground_1x4.png");
static const QImage shaper_2x2(":/backgrounds/ShaperBackground_2x2.png");
static const QImage shaper_2x3(":/backgrounds/ShaperBackground_2x3.png");
static const QImage shaper_2x4(":/backgrounds/ShaperBackground_2x4.png");

/*
PoE colors:
Expand Down

0 comments on commit c11c0ab

Please sign in to comment.