1
0
This commit is contained in:
SomberNight
2018-02-24 00:14:34 +01:00
parent 1825c92bbc
commit 55a0a6b7f0
2 changed files with 21 additions and 7 deletions

View File

@@ -33,7 +33,7 @@ from electrum.util import block_explorer_URL
from electrum.util import timestamp_to_datetime, profiler
try:
from electrum.plot import plot_history
from electrum.plot import plot_history, NothingToPlotException
except:
plot_history = None
@@ -195,11 +195,11 @@ class HistoryList(MyTreeWidget, AcceptFileDragDrop):
_("Can't plot history.") + '\n' +
_("Perhaps some dependencies are missing...") + " (matplotlib?)")
return
if len(self.transactions) > 0:
try:
plt = plot_history(self.transactions)
plt.show()
else:
self.parent.show_message(_("Nothing to plot."))
except NothingToPlotException as e:
self.parent.show_message(str(e))
@profiler
def on_update(self):