mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
Fix apply_output_config return value when enabling output
apply_output_config would call output_enable and always return true, even if the output couldn't be enabled.
This commit is contained in:
parent
43bd8dc437
commit
58a40ce07b
|
@ -90,7 +90,7 @@ struct sway_output *all_output_by_name_or_id(const char *name_or_id);
|
|||
|
||||
void output_sort_workspaces(struct sway_output *output);
|
||||
|
||||
void output_enable(struct sway_output *output, struct output_config *oc);
|
||||
bool output_enable(struct sway_output *output, struct output_config *oc);
|
||||
|
||||
void output_disable(struct sway_output *output);
|
||||
|
||||
|
|
|
@ -249,8 +249,7 @@ bool apply_output_config(struct output_config *oc, struct sway_output *output) {
|
|||
if (!oc || oc->dpms_state != DPMS_OFF) {
|
||||
wlr_output_enable(wlr_output, true);
|
||||
}
|
||||
output_enable(output, oc);
|
||||
return true;
|
||||
return output_enable(output, oc);
|
||||
}
|
||||
|
||||
if (oc && oc->dpms_state == DPMS_ON) {
|
||||
|
|
|
@ -60,7 +60,7 @@ static void restore_workspaces(struct sway_output *output) {
|
|||
struct sway_workspace *ws = root->noop_output->workspaces->items[0];
|
||||
workspace_detach(ws);
|
||||
output_add_workspace(output, ws);
|
||||
|
||||
|
||||
// If the floater was made floating while on the NOOP output, its width
|
||||
// and height will be zero and it should be reinitialized as a floating
|
||||
// container to get the appropriate size and location. Additionally, if
|
||||
|
@ -104,9 +104,9 @@ struct sway_output *output_create(struct wlr_output *wlr_output) {
|
|||
return output;
|
||||
}
|
||||
|
||||
void output_enable(struct sway_output *output, struct output_config *oc) {
|
||||
bool output_enable(struct sway_output *output, struct output_config *oc) {
|
||||
if (!sway_assert(!output->enabled, "output is already enabled")) {
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
struct wlr_output *wlr_output = output->wlr_output;
|
||||
size_t len = sizeof(output->layers) / sizeof(output->layers[0]);
|
||||
|
@ -117,7 +117,7 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
|
|||
output->enabled = true;
|
||||
if (!apply_output_config(oc, output)) {
|
||||
output->enabled = false;
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
output->configured = true;
|
||||
|
@ -155,6 +155,8 @@ void output_enable(struct sway_output *output, struct output_config *oc) {
|
|||
|
||||
arrange_layers(output);
|
||||
arrange_root();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void evacuate_sticky(struct sway_workspace *old_ws,
|
||||
|
|
Loading…
Reference in a new issue