mirror of
https://github.com/martinrotter/rssguard.git
synced 2024-12-28 17:10:28 +01:00
Tweak style for attachments.
This commit is contained in:
parent
5c54de4ffa
commit
fd2ec44fa2
@ -1 +1 @@
|
|||||||
<a class="btn btn-primary btn-sm" href="%1">%2 (%3)</a>
|
<a style="margin-right: 5px;" class="btn btn-primary btn-sm" href="%1">%2 (%3)</a>
|
@ -42,8 +42,11 @@
|
|||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
|
|
||||||
|
#if defined (Q_OS_MAC)
|
||||||
extern void disableWindowTabbing();
|
extern void disableWindowTabbing();
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
for (int i = 0; i < argc; i++) {
|
for (int i = 0; i < argc; i++) {
|
||||||
const QString str = QString::fromLocal8Bit(argv[i]);
|
const QString str = QString::fromLocal8Bit(argv[i]);
|
||||||
@ -87,7 +90,7 @@ int main(int argc, char* argv[]) {
|
|||||||
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps);
|
||||||
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
#if defined (Q_OS_MAC)
|
||||||
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
QApplication::setAttribute(Qt::AA_DontShowIconsInMenus);
|
||||||
disableWindowTabbing();
|
disableWindowTabbing();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user