From 7647a7cf661d51456d802c785a2eb6d69667ac2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Thu, 7 Jul 2016 15:34:44 +0200 Subject: [PATCH] RTD theme: Try to disable collapse_navigation --- conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf.py b/conf.py index bb938f32..04f98098 100644 --- a/conf.py +++ b/conf.py @@ -54,6 +54,11 @@ if not on_rtd: # only import and set the theme if we're building docs locally html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +# Theme options +html_theme_options = { + "collapse_navigation": "False", +} + # Output file base name for HTML help builder htmlhelp_basename = 'GodotEnginedoc'