1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 18:51:04 +02:00

refactor: fix new pedantic clippy warnings

This commit is contained in:
Jake Stanger 2023-07-16 20:09:22 +01:00
parent 36abe4073e
commit 06251e293e
No known key found for this signature in database
GPG key ID: C51FC8F9CB0BEA61
4 changed files with 10 additions and 24 deletions

View file

@ -148,7 +148,7 @@ Responds with `ok` if the popup exists, otherwise `error`.
```json
{
"type": "toggle_popup",
"bar_name": "DP-2-13",
"bar_name": "bar-123",
"name": "clock"
}
```
@ -163,7 +163,7 @@ Responds with `ok` if the popup exists, otherwise `error`.
```json
{
"type": "open_popup",
"bar_name": "DP-2-13",
"bar_name": "bar-123",
"name": "clock"
}
```
@ -176,8 +176,8 @@ Responds with `ok` if the popup exists, otherwise `error`.
```json
{
"type": "toggle_popup",
"bar_name": "DP-2-13"
"type": "close_popup",
"bar_name": "bar-123"
}
```