shell32: Replace bitwise XOR with a contextually more proper operator.
This commit is contained in:
parent
c143f805cd
commit
aefe637b56
|
@ -472,7 +472,7 @@ static void update_panestate(ExplorerBrowserImpl *This)
|
||||||
else
|
else
|
||||||
show_navpane = FALSE;
|
show_navpane = FALSE;
|
||||||
|
|
||||||
if(This->navpane.show ^ show_navpane)
|
if(This->navpane.show != show_navpane)
|
||||||
{
|
{
|
||||||
update_layout(This);
|
update_layout(This);
|
||||||
size_panes(This);
|
size_panes(This);
|
||||||
|
|
Loading…
Reference in New Issue