We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f9464b + 7985672 commit 5a7e0eaCopy full SHA for 5a7e0ea
1 file changed
lib/matplotlib/text.py
@@ -1224,16 +1224,8 @@ def set_usetex(self, usetex):
1224
self.stale = True
1225
1226
def get_usetex(self):
1227
- """
1228
- Return whether this `Text` object uses TeX for rendering.
1229
-
1230
- If the user has not manually set this value, it defaults to
1231
- :rc:`text.usetex`.
1232
1233
- if self._usetex is None:
1234
- return rcParams['text.usetex']
1235
- else:
1236
- return self._usetex
+ """Return whether this `Text` object uses TeX for rendering."""
+ return self._usetex
1237
1238
def set_fontname(self, fontname):
1239
"""
0 commit comments