aboutsummaryrefslogtreecommitdiff
path: root/include/swaynag
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2023-01-08 09:21:30 -0500
committerFurkan Sahin <furkan-dev@proton.me>2023-01-08 09:21:30 -0500
commit37e3e7748ca10d15c50a395b25551a4970924822 (patch)
tree94b773c7ff37dfe45c6e99cfaecff98927bf0b8b /include/swaynag
parentcecc555febf7d036fbbc201ae75dd45307d53818 (diff)
swaynag: call swaynag_destroy on clean exit
And fix the fallout of the swaynag_destroy having evolved without being tested: * wl_display_disconnect was called too early * `button_close` and `swaynag.details.button_details` needed to be heap allocated, since they are added to swaynag.buttons, and all entries of swaynag.buttons are freed in swaynag_destroy * To keep things simpler, disconnect the lifetime of the 'Toggle details' button text config setting from the button itself.
Diffstat (limited to 'include/swaynag')
-rw-r--r--include/swaynag/swaynag.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/swaynag/swaynag.h b/include/swaynag/swaynag.h
index 2d68b6c9..ccd313a0 100644
--- a/include/swaynag/swaynag.h
+++ b/include/swaynag/swaynag.h
@@ -58,6 +58,7 @@ struct swaynag_button {
struct swaynag_details {
bool visible;
char *message;
+ char *details_text;
int x;
int y;
@@ -67,7 +68,7 @@ struct swaynag_details {
int offset;
int visible_lines;
int total_lines;
- struct swaynag_button button_details;
+ struct swaynag_button *button_details;
struct swaynag_button button_up;
struct swaynag_button button_down;
};