From 35292bd8eaf49d7cb4566fbab23395e692644e91 Mon Sep 17 00:00:00 2001
From: Antony Lee <anntzer.lee@gmail.com>
Date: Sat, 4 Feb 2017 14:16:45 -0800
Subject: [PATCH] Allow choosing logit scale in qt figure options.

---
 lib/matplotlib/backends/qt_editor/figureoptions.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/matplotlib/backends/qt_editor/figureoptions.py b/lib/matplotlib/backends/qt_editor/figureoptions.py
index 824db2c7bd76..d7062d694317 100644
--- a/lib/matplotlib/backends/qt_editor/figureoptions.py
+++ b/lib/matplotlib/backends/qt_editor/figureoptions.py
@@ -54,12 +54,12 @@ def figure_edit(axes, parent=None):
                (None, "<b>X-Axis</b>"),
                ('Min', xmin), ('Max', xmax),
                ('Label', axes.get_xlabel()),
-               ('Scale', [axes.get_xscale(), 'linear', 'log']),
+               ('Scale', [axes.get_xscale(), 'linear', 'log', 'logit']),
                sep,
                (None, "<b>Y-Axis</b>"),
                ('Min', ymin), ('Max', ymax),
                ('Label', axes.get_ylabel()),
-               ('Scale', [axes.get_yscale(), 'linear', 'log']),
+               ('Scale', [axes.get_yscale(), 'linear', 'log', 'logit']),
                sep,
                ('(Re-)Generate automatic legend', False),
                ]