Skip to content

Commit

Permalink
Make the DODO-GPT button tooltips more helpful
Browse files Browse the repository at this point in the history
  • Loading branch information
mjsutcliffe99 authored Jul 29, 2024
1 parent 49d1364 commit 597161d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zxlive/edit_panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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)
action_dodo_query(self.graph_scene.g)

0 comments on commit 597161d

Please sign in to comment.