From af4548cd6b40b7eb6478535b422b1bc4c33182cd Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Thu, 16 Apr 2015 18:51:29 +0200 Subject: [PATCH] Toggle properly the math-display icon --- src/mathed/InsetMathHull.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index 53a16e8d0f..b9c5b2c2e3 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -1645,6 +1645,7 @@ bool InsetMathHull::getStatus(Cursor & cur, FuncRequest const & cmd, enable = display() != Inline; } status.setEnabled(enable); + status.setOnOff(display() != Inline); return true; }