Browse Source

conf.py: Prevent RTD from overriding our theme config

Also tweak the logo a bit.
Rémi Verschelde 9 years ago
parent
commit
52b63a977d
2 changed files with 5 additions and 4 deletions
  1. 5 4
      conf.py
  2. BIN
      img/docs_logo.png

+ 5 - 4
conf.py

@@ -49,10 +49,11 @@ highlight_language = 'gdscript'
 # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org
 on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
 
-if not on_rtd:  # only import and set the theme if we're building docs locally
-    import sphinx_rtd_theme
-    html_theme = 'sphinx_rtd_theme'
-    html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
+import sphinx_rtd_theme
+html_theme = 'sphinx_rtd_theme'
+html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
+if on_rtd:
+	using_rtd_theme = True
 
 # Theme options
 html_theme_options = {

BIN
img/docs_logo.png