1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

[Themes][RTL] Use correct icons for tabbar scroll buttons.

- also fixed compile issue on Windows.
This commit is contained in:
S. Razi Alavizadeh 2014-02-12 19:41:05 +03:30
parent d17584d944
commit f52d5fa234
6 changed files with 50 additions and 1 deletions

View File

@ -7,3 +7,13 @@
{
qproperty-multiIcon: url(images/navigation-forward.png);
}
#tabbar-button-right
{
qproperty-icon: url(images/tab-left-arrow.png);
}
#tabbar-button-left
{
qproperty-icon: url(images/tab-right-arrow.png);
}

View File

@ -7,3 +7,13 @@
{
qproperty-icon: url(images/navigation-forward.png);
}
#tabbar-button-right
{
qproperty-icon: url(images/tab-left-arrow.png);
}
#tabbar-button-left
{
qproperty-icon: url(images/tab-right-arrow.png);
}

View File

@ -10,3 +10,12 @@
qproperty-fallbackIcon: url(images/go-next.png);
}
#tabbar-button-right
{
qproperty-icon: url(images/tab-left-arrow.png);
}
#tabbar-button-left
{
qproperty-icon: url(images/tab-right-arrow.png);
}

View File

@ -12,3 +12,13 @@
{
qproperty-multiIcon: url(images/tabs-list-button_rtl.png);
}
#tabbar-button-right
{
qproperty-icon: url(images/tab-left-arrow.png);
}
#tabbar-button-left
{
qproperty-icon: url(images/tab-right-arrow.png);
}

View File

@ -17,3 +17,13 @@
{
margin-left: 1px;
}
#tabbar-button-right
{
qproperty-icon: url(images/tab-left-arrow.png);
}
#tabbar-button-left
{
qproperty-icon: url(images/tab-right-arrow.png);
}

View File

@ -198,7 +198,7 @@ MainApplication::MainApplication(int &argc, char** argv)
else {
#if defined(Q_OS_WIN) || defined(Q_OS_OS2)
// Use %APPDATA%/qupzilla as PROFILEDIR on Windows
#if QT_VERSION >= 0x050000
#if QT_VERSION < 0x050000
QString dataLocation = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
#else
QString dataLocation = QStandardPaths::writableLocation(QStandardPaths::DataLocation);