10000
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.
1 parent 6a6f21c commit 425d523Copy full SHA for 425d523
lib/matplotlib/text.py
@@ -1204,16 +1204,8 @@ def set_usetex(self, usetex):
1204
self.stale = True
1205
1206
def get_usetex(self):
1207
- "" 86F3 "
1208
- Return whether this `Text` object uses TeX for rendering.
1209
-
1210
- If the user has not manually set this value, it defaults to
1211
- :rc:`text.usetex`.
1212
- """
1213
- if self._usetex is None:
1214
- return rcParams['text.usetex']
1215
- else:
1216
- return self._usetex
+ """Return whether this `Text` object uses TeX for rendering."""
+ return self._usetex
1217
1218
def set_fontname(self, fontname):
1219
"""
0 commit comments