Implemented first-motion info into picking window.

This commit is contained in:
Ludger Küperkoch 2020-09-30 13:27:02 +02:00
parent 7d77cb0b2f
commit 08c2d7556f

View File

@ -2703,6 +2703,8 @@ class PickDlg(QDialog):
ax.plot(mpp, ylims[0], color=color, marker='^', zorder=baseorder + 3)
# append phase text (if textOnly: draw with current ylims)
self.phaseText.append(ax.text(mpp, ylims[1], phase, color=color, zorder=baseorder + 10))
# indicate first motion
self.phaseText.append(ax.text(mpp - 0.03 * mpp, ylims[1] - ylims[1] / 12, picks['fm'], color=color, zorder=baseorder + 10))
ax.legend(loc=1)
def connect_mouse_motion(self):