diff --git a/bin/themes/chrome/rtl.css b/bin/themes/chrome/rtl.css index f96c10b64..e90f8f59d 100644 --- a/bin/themes/chrome/rtl.css +++ b/bin/themes/chrome/rtl.css @@ -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); +} diff --git a/bin/themes/default/rtl.css b/bin/themes/default/rtl.css index 08249e638..d6459f14d 100644 --- a/bin/themes/default/rtl.css +++ b/bin/themes/default/rtl.css @@ -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); +} diff --git a/bin/themes/linux/rtl.css b/bin/themes/linux/rtl.css index 45752a061..0667895dd 100644 --- a/bin/themes/linux/rtl.css +++ b/bin/themes/linux/rtl.css @@ -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); +} diff --git a/bin/themes/mac/rtl.css b/bin/themes/mac/rtl.css index c15803207..f68b11056 100644 --- a/bin/themes/mac/rtl.css +++ b/bin/themes/mac/rtl.css @@ -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); +} diff --git a/bin/themes/windows/rtl.css b/bin/themes/windows/rtl.css index 1d9c66241..c1e71ff50 100644 --- a/bin/themes/windows/rtl.css +++ b/bin/themes/windows/rtl.css @@ -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); +} diff --git a/src/lib/app/mainapplication.cpp b/src/lib/app/mainapplication.cpp index 0f153d39b..7172ecc96 100644 --- a/src/lib/app/mainapplication.cpp +++ b/src/lib/app/mainapplication.cpp @@ -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);