Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremypw committed Aug 11, 2024
1 parent e9a71c3 commit 5ea3752
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Utils.vala
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,12 @@ namespace Scratch.Utils {
f2_parent = f2_parent.get_parent ();
break;
}
if (!f2_parent.has_parent(null)) {

if (!f2_parent.has_parent (null)) {
f1_parent = f1_parent.get_parent ();
break;
}

f1_parent = f1_parent.get_parent ();
f2_parent = f2_parent.get_parent ();
}
Expand Down

0 comments on commit 5ea3752

Please sign in to comment.