diff --git a/po/cs.gmo b/po/cs.gmo index f19e6a9413..c59df93188 100644 Binary files a/po/cs.gmo and b/po/cs.gmo differ diff --git a/src/frontends/qt/GuiWorkArea.cpp b/src/frontends/qt/GuiWorkArea.cpp index f6e3c723df..87181f95e9 100644 --- a/src/frontends/qt/GuiWorkArea.cpp +++ b/src/frontends/qt/GuiWorkArea.cpp @@ -1499,6 +1499,11 @@ TabWorkArea::TabWorkArea(QWidget * parent) QObject::connect(this, SIGNAL(currentChanged(int)), this, SLOT(on_currentTabChanged(int))); +#if QT_VERSION >= 0x050200 + // Fix for #11835 + QObject::connect(this, SIGNAL(tabBarClicked(int)), + this, SLOT(on_currentTabChanged(int))); +#endif closeBufferButton = new QToolButton(this); closeBufferButton->setPalette(pal);