Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Yori Fournier
myplotlib
Commits
fd45731f
Commit
fd45731f
authored
Jan 23, 2017
by
Yori Fournier
Browse files
Merge branch 'bugfix-formatted-false-by-set-rawdata' into 'dev'
BUGFIX: formatted not updated in set_rawdata See merge request
!11
parents
c8792c08
e0dc23b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
myFig.py
View file @
fd45731f
...
...
@@ -281,6 +281,7 @@ class MyFig(MyFig_base):
if
(
len
(
self
.
get_axes
())
==
len
(
rawdata
)):
self
.
rawdata
=
rawdata
self
.
formatted
=
False
self
.
formatRawData
()
else
:
self
.
rawdata
=
()
...
...
@@ -310,10 +311,15 @@ class MyFig(MyFig_base):
status
=
True
if
(
self
.
debug
):
print
(
DBUG
+
"currently formatting the data..."
)
if
((
self
.
reformat
)
or
(
not
self
.
formatted
)):
status
=
self
.
formatRawData
()
if
(
self
.
debug
):
print
(
DBUG
+
"currently plotting the axes..."
)
# For all axes in the figure reformat if needed and plot
for
ax
in
self
.
get_axes
():
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment