Skip to content

Commit

Permalink
app: Improve play button tooltip
Browse files Browse the repository at this point in the history
The tooltip for the 'Start playback' button is somewhat misleading.

```tooltip-text: _("Start/Stop playback");```

This button not only starts the playback but also pauses it.

It was already declared in the accessibility string.

```
          accessibility {
            label: _("Start or pause the playback");
          }
```

The tooltip for this button should be something like the following strings:

- Toggle Playback
- Start/Stop playback
- Start/Stop
  • Loading branch information
yakushabb committed Apr 17, 2024
1 parent f797496 commit b1a6f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/ui/media_controller.blp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ template $MediaController: Adw.BreakpointBin {
height-request: 42;
focusable: true;
receives-default: true;
tooltip-text: _("Start playback");
tooltip-text: _("Start/Stop playback");
halign: center;
valign: center;
icon-name: 'media-playback-start-symbolic';
Expand Down

0 comments on commit b1a6f0e

Please sign in to comment.