- Slide transition in playlist navigation
- Make the volume handle red when volume is zero
- Enhancements to the search suggestions
-- Restored compatibility with Mac OS X Snow Leopard
- The Mac version is now 64bit and uses the VLC engine to play videos
+- Fixed minor style issues with Mac OS X Yosemite 10.10
+- Restored compatibility with Mac OS X Snow Leopard 10.6
- The Windows version has been updated to the latest VLC
-- The Ubuntu version is now shipped as a .deb on the site. Goodbye Ubuntu Software Center!
+- The Ubuntu & Debian version is now shipped as a .deb on the site. Goodbye Ubuntu Software Center!
- New and updated translations
2.2
#ifdef Q_OS_MAC
mac::MacMain();
- // https://bugreports.qt-project.org/browse/QTBUG-32789
- QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
+ QFont::insertSubstitution(".Helvetica Neue DeskInterface", "Helvetica Neue");
#endif
QtSingleApplication app(argc, argv);
app.setApplicationName(QLatin1String(Constants::NAME));
app.setOrganizationName(QLatin1String(Constants::ORG_NAME));
app.setOrganizationDomain(QLatin1String(Constants::ORG_DOMAIN));
-#ifndef APP_WIN
- app.setWheelScrollLines(1);
-#endif
app.setAttribute(Qt::AA_DontShowIconsInMenus);
#ifdef APP_EXTRA
searchLayout->setAlignment(Qt::AlignVCenter);
queryEdit = new SearchLineEdit(this);
+#ifndef APP_MAC
queryEdit->setFont(biggerFont);
+#endif
connect(queryEdit, SIGNAL(search(const QString&)), SLOT(watch(const QString&)));
connect(queryEdit, SIGNAL(textEdited(const QString &)), SLOT(textChanged(const QString &)));
connect(queryEdit, SIGNAL(suggestionAccepted(Suggestion*)), SLOT(suggestionAccepted(Suggestion*)));
updateRecentChannels();
queryEdit->selectAll();
queryEdit->enableSuggest();
- QTimer::singleShot(0, queryEdit, SLOT(setFocus()));
+ if (!queryEdit->hasFocus())
+ QTimer::singleShot(10, queryEdit, SLOT(setFocus()));
}
void SearchView::updateRecentKeywords() {