Fix oopsie

This commit is contained in:
Fierelier 2023-03-03 12:15:24 +01:00
parent 91ea1023f8
commit fd58e24992
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import sys
destroyedViews = []
def unrefWebView(webView): # yeaah, this actually references a webView just... yes.
destroyedViews.append(webViews) # not keeping a reference makes gtk sad.. i should probably report this.
destroyedViews.append(webView) # not keeping a reference makes gtk sad.. i should probably report this.
if len(destroyedViews) > 100: destroyedViews.pop(0)
def createWebView(*args,relatedWebView = None,webView = None,**kwargs):