Make font italic for current tab in editor

This commit is contained in:
Kovid Goyal 2020-01-02 00:12:54 +05:30
parent ad4d1f882a
commit dcc5757a24
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -76,6 +76,7 @@ class Central(QStackedWidget): # {{{
c.setLayout(l)
l.setContentsMargins(0, 0, 0, 0)
self.editor_tabs = t = QTabWidget(c)
self.editor_tabs.setStyleSheet('QTabBar::tab:selected { font-style: italic }')
l.addWidget(t)
t.setDocumentMode(True)
t.setTabsClosable(True)