Skip to content

Commit

Permalink
Merge pull request #37 from Araxor/master
Browse files Browse the repository at this point in the history
Fixed filtering by output that was inverted.
  • Loading branch information
denesb authored Nov 8, 2016
2 parents 2640cce + 03ef2e2 commit db0c592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel-plugin/i3w-plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ add_workspaces(i3WorkspacesPlugin *i3_workspaces)
i3workspace *workspace = (i3workspace *) witem->data;
if (workspace &&
(i3_workspaces->config->output[0] == 0 ||
g_strcmp0(i3_workspaces->config->output, workspace->output)))
g_strcmp0(i3_workspaces->config->output, workspace->output) == 0))
{
GtkWidget * button;
button = xfce_panel_create_button();
Expand Down

0 comments on commit db0c592

Please sign in to comment.