mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-28 08:04:13 +08:00
Update specialwidget.py
This commit is contained in:
parent
2131a3ba24
commit
2b3d7e3133
@ -173,22 +173,19 @@ class ScrollFlow(QWidget):
|
||||
self.qscrollarea.setWidgetResizable(True)
|
||||
self.qscrollarea.setWidget(self.listWidget)
|
||||
self.qscrollarea.scrolled.connect(self.doshowlazywidget)
|
||||
@trypass
|
||||
def doshowlazywidget(self,region:QRect):
|
||||
try:
|
||||
#print(region)
|
||||
for i,widget in enumerate(self.lazyitems):
|
||||
if i in self.lazydoneidx:
|
||||
continue
|
||||
widget_rect = widget.geometry() #有可能已被delete,必须try
|
||||
#print(widget_rect)
|
||||
if region.intersects(widget_rect):
|
||||
#print(i,widget_rect)
|
||||
self.lazydoneidx.append(i)
|
||||
widget.do()
|
||||
QApplication.processEvents()
|
||||
except:
|
||||
print_exc()
|
||||
|
||||
for i,widget in enumerate(self.lazyitems):
|
||||
if i in self.lazydoneidx:
|
||||
continue
|
||||
widget_rect = widget.geometry() #有可能已被delete,必须try
|
||||
#print(widget_rect)
|
||||
if region.intersects(widget_rect):
|
||||
#print(i,widget_rect)
|
||||
self.lazydoneidx.append(i)
|
||||
widget.do()
|
||||
QApplication.processEvents()
|
||||
|
||||
def refreshscroll(self):
|
||||
QApplication.processEvents()
|
||||
self.doshowlazywidget(self.geometry())
|
||||
|
Loading…
x
Reference in New Issue
Block a user