From 597161d669f42af160f5f131302c5e8a23c1be44 Mon Sep 17 00:00:00 2001 From: mjsutcliffe99 <105458229+mjsutcliffe99@users.noreply.github.com> Date: Mon, 29 Jul 2024 01:34:34 +0100 Subject: [PATCH] Make the DODO-GPT button tooltips more helpful --- zxlive/edit_panel.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zxlive/edit_panel.py b/zxlive/edit_panel.py index 3db1c2e..425e9c8 100644 --- a/zxlive/edit_panel.py +++ b/zxlive/edit_panel.py @@ -64,12 +64,12 @@ def _toolbar_sections(self) -> Iterator[ToolbarSection]: self.dodo_hint = QToolButton(self) self.dodo_hint.setIcon(QIcon(get_data("icons/dodo.png"))) - self.dodo_hint.setToolTip("Dodo Hint") + self.dodo_hint.setToolTip("Ask DODO-GPT for suggestions on how to rewrite your diagram") self.dodo_hint.clicked.connect(self._dodo_hint) self.dodo_query = QToolButton(self) self.dodo_query.setIcon(QIcon(get_data("icons/mic.svg"))) - self.dodo_query.setToolTip("Dodo Query") + self.dodo_query.setToolTip("Ask DODO-GPT anything via mic") self.dodo_query.clicked.connect(self._dodo_query) yield ToolbarSection(self.dodo_hint, self.dodo_query) @@ -125,4 +125,4 @@ def _dodo_hint(self) -> None: action_dodo_hint(self.graph_scene.g) def _dodo_query(self) -> None: - action_dodo_query(self.graph_scene.g) \ No newline at end of file + action_dodo_query(self.graph_scene.g)