mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
swaynag: allocate button_details with details
They are used together, so it doesn't make sense to allocate them separately.
This commit is contained in:
parent
f167acce3a
commit
0babfce4b5
|
@ -67,7 +67,7 @@ struct swaynag_details {
|
||||||
int offset;
|
int offset;
|
||||||
int visible_lines;
|
int visible_lines;
|
||||||
int total_lines;
|
int total_lines;
|
||||||
struct swaynag_button *button_details;
|
struct swaynag_button button_details;
|
||||||
struct swaynag_button button_up;
|
struct swaynag_button button_up;
|
||||||
struct swaynag_button button_down;
|
struct swaynag_button button_down;
|
||||||
};
|
};
|
||||||
|
|
|
@ -232,8 +232,8 @@ int swaynag_parse_options(int argc, char **argv, struct swaynag *swaynag,
|
||||||
break;
|
break;
|
||||||
case 'L': // Detailed Button Text
|
case 'L': // Detailed Button Text
|
||||||
if (swaynag) {
|
if (swaynag) {
|
||||||
free(swaynag->details.button_details->text);
|
free(swaynag->details.button_details.text);
|
||||||
swaynag->details.button_details->text = strdup(optarg);
|
swaynag->details.button_details.text = strdup(optarg);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'm': // Message
|
case 'm': // Message
|
||||||
|
|
|
@ -40,15 +40,6 @@ int main(int argc, char **argv) {
|
||||||
button_close->type = SWAYNAG_ACTION_DISMISS;
|
button_close->type = SWAYNAG_ACTION_DISMISS;
|
||||||
list_add(swaynag.buttons, button_close);
|
list_add(swaynag.buttons, button_close);
|
||||||
|
|
||||||
swaynag.details.button_details =
|
|
||||||
calloc(sizeof(struct swaynag_button), 1);
|
|
||||||
if (!swaynag.details.button_details) {
|
|
||||||
perror("calloc");
|
|
||||||
return EXIT_FAILURE;
|
|
||||||
}
|
|
||||||
swaynag.details.button_details->text = strdup("Toggle details");
|
|
||||||
swaynag.details.button_details->type = SWAYNAG_ACTION_EXPAND;
|
|
||||||
|
|
||||||
char *config_path = NULL;
|
char *config_path = NULL;
|
||||||
bool debug = false;
|
bool debug = false;
|
||||||
int launch_status = swaynag_parse_options(argc, argv, NULL, NULL, NULL,
|
int launch_status = swaynag_parse_options(argc, argv, NULL, NULL, NULL,
|
||||||
|
@ -72,6 +63,9 @@ int main(int argc, char **argv) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
swaynag.details.button_details.text = strdup("Toggle details");
|
||||||
|
swaynag.details.button_details.type = SWAYNAG_ACTION_EXPAND;
|
||||||
|
|
||||||
if (argc > 1) {
|
if (argc > 1) {
|
||||||
struct swaynag_type *type_args = swaynag_type_new("<args>");
|
struct swaynag_type *type_args = swaynag_type_new("<args>");
|
||||||
list_add(types, type_args);
|
list_add(types, type_args);
|
||||||
|
@ -107,10 +101,7 @@ int main(int argc, char **argv) {
|
||||||
swaynag_types_free(types);
|
swaynag_types_free(types);
|
||||||
|
|
||||||
if (swaynag.details.message) {
|
if (swaynag.details.message) {
|
||||||
list_add(swaynag.buttons, swaynag.details.button_details);
|
list_add(swaynag.buttons, &swaynag.details.button_details);
|
||||||
} else {
|
|
||||||
free(swaynag.details.button_details->text);
|
|
||||||
free(swaynag.details.button_details);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sway_log(SWAY_DEBUG, "Output: %s", swaynag.type->output);
|
sway_log(SWAY_DEBUG, "Output: %s", swaynag.type->output);
|
||||||
|
@ -132,8 +123,7 @@ int main(int argc, char **argv) {
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
swaynag_types_free(types);
|
swaynag_types_free(types);
|
||||||
free(swaynag.details.button_details->text);
|
free(swaynag.details.button_details.text);
|
||||||
free(swaynag.details.button_details);
|
|
||||||
swaynag_destroy(&swaynag);
|
swaynag_destroy(&swaynag);
|
||||||
return exit_code;
|
return exit_code;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue