summaryrefslogtreecommitdiffstats
path: root/pkg/gui/options_map.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/options_map.go')
-rw-r--r--pkg/gui/options_map.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/gui/options_map.go b/pkg/gui/options_map.go
index 769b6866f..a2f1496bc 100644
--- a/pkg/gui/options_map.go
+++ b/pkg/gui/options_map.go
@@ -15,6 +15,10 @@ type OptionsMapMgr struct {
}
func (gui *Gui) renderContextOptionsMap(c types.Context) {
+ // In demos, we render our own content to this view
+ if gui.integrationTest != nil && gui.integrationTest.IsDemo() {
+ return
+ }
mgr := OptionsMapMgr{c: gui.c}
mgr.renderContextOptionsMap(c)
}