mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Dont eval the extra css functions unless needed
This commit is contained in:
parent
9948e2dafa
commit
550b6776e1
@ -131,12 +131,13 @@ def ensure_id(w, prefix):
|
||||
return ans
|
||||
|
||||
extra_css = v'[]'
|
||||
|
||||
def add_extra_css(func):
|
||||
extra_css.push(func())
|
||||
add_extra_css = extra_css.push.bind(extra_css)
|
||||
|
||||
def get_widget_css():
|
||||
return extra_css.join('\n')
|
||||
ans = v'[]'
|
||||
for func in extra_css:
|
||||
ans.push(func())
|
||||
return ans.join('\n')
|
||||
|
||||
|
||||
def set_radio_group_value(parent, name, val):
|
||||
|
Loading…
x
Reference in New Issue
Block a user