disable cache-size cfg for 2D plots

This commit is contained in:
2021-06-08 14:38:14 +02:00
parent 6d29853010
commit 7e2ec4cb28

View File

@@ -7,6 +7,7 @@ class ConfigDialog2D(Column):
def __init__(self):
self.ti_cache_size = ti_cache_size = TextInput(value="", title="Cache size:")
ti_cache_size.disabled = True # 2D plot only shows the latest image
super().__init__(ti_cache_size)