changeset 24650:2ab1154f2c7d

add tool tip for variable editor plot data button (bug #53001) * variable-editor.cc (variable_editor::selected_to_octave): Set tool tip for plot data button.
author John W. Eaton <jwe@octave.org>
date Mon, 29 Jan 2018 13:33:09 -0500
parents 456b486ae5e6
children d88323efe969
files libgui/src/variable-editor.cc
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/src/variable-editor.cc	Mon Jan 29 13:10:10 2018 -0500
+++ b/libgui/src/variable-editor.cc	Mon Jan 29 13:33:09 2018 -0500
@@ -1233,6 +1233,7 @@
 
   QToolButton *plot_tool_button = new QToolButton (m_tool_bar);
   plot_tool_button->setText (tr ("Plot"));
+  plot_tool_button->setToolTip (tr ("Plot Selected Data"));
   plot_tool_button->setIcon (resource_manager::icon ("plot-xy-curve"));
 
   plot_tool_button->setPopupMode (QToolButton::InstantPopup);