mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
More stupid PyQt enums
This commit is contained in:
parent
191d900145
commit
5d0335cf17
@ -441,10 +441,10 @@ class VLTabs(QTabBar): # {{{
|
|||||||
gprefs['vl_tabs_closable'] = True
|
gprefs['vl_tabs_closable'] = True
|
||||||
self.setTabsClosable(True)
|
self.setTabsClosable(True)
|
||||||
try:
|
try:
|
||||||
self.tabButton(0, self.RightSide).setVisible(False)
|
self.tabButton(0, QTabBar.ButtonPosition.RightSide).setVisible(False)
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
try:
|
try:
|
||||||
self.tabButton(0, self.LeftSide).setVisible(False)
|
self.tabButton(0, QTabBar.ButtonPosition.LeftSide).setVisible(False)
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
# On some OS X machines (using native style) the tab button is
|
# On some OS X machines (using native style) the tab button is
|
||||||
# on the left
|
# on the left
|
||||||
@ -509,10 +509,10 @@ class VLTabs(QTabBar): # {{{
|
|||||||
if current_idx is None and current_lib:
|
if current_idx is None and current_lib:
|
||||||
self.setTabText(all_idx, current_lib)
|
self.setTabText(all_idx, current_lib)
|
||||||
try:
|
try:
|
||||||
self.tabButton(all_idx, self.RightSide).setVisible(False)
|
self.tabButton(all_idx, QTabBar.ButtonPosition.RightSide).setVisible(False)
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
try:
|
try:
|
||||||
self.tabButton(all_idx, self.LeftSide).setVisible(False)
|
self.tabButton(all_idx, QTabBar.ButtonPosition.LeftSide).setVisible(False)
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
# On some OS X machines (using native style) the tab button is
|
# On some OS X machines (using native style) the tab button is
|
||||||
# on the left
|
# on the left
|
||||||
|
Loading…
x
Reference in New Issue
Block a user