mirror of
https://github.com/LorenEteval/Furious.git
synced 2026-09-27 01:10:22 +03:00
Fix embedded combo widgets in UserSubsWindow deleted too early in C++ backend
Signed-off-by: LorenEteval <loren.eteval@proton.me>
This commit is contained in:
committed by
Loren Eteval
parent
5d8e55ce81
commit
1a873fd01f
@@ -534,7 +534,7 @@ class UserSubsQTableView(Mixins.QTranslatable, AppQTableView):
|
||||
if column == self.Headers.index('Auto Update'):
|
||||
header = self.Headers[column]
|
||||
|
||||
newItem = UserSubsAppQComboBox()
|
||||
newItem = UserSubsAppQComboBox(parent=self.viewport())
|
||||
newItem.addItems(list(_(key) for key in self.AutoUpdateOptions.keys()))
|
||||
newItem.setFont(QFont(AppFontName()))
|
||||
|
||||
@@ -557,7 +557,7 @@ class UserSubsQTableView(Mixins.QTranslatable, AppQTableView):
|
||||
elif column == self.Headers.index('Auto Update Use Proxy'):
|
||||
header = self.Headers[column]
|
||||
|
||||
newItem = UserSubsAppQComboBox()
|
||||
newItem = UserSubsAppQComboBox(parent=self.viewport())
|
||||
newItem.addItems(list(_(key) for key in self.ProxyOptions.keys()))
|
||||
newItem.setFont(QFont(AppFontName()))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user