We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2e43f commit b51e0e7Copy full SHA for b51e0e7
src/SymbolPane/Vala/ValaSymbolOutline.vala
@@ -147,7 +147,9 @@ public class Scratch.Services.ValaSymbolOutline : Scratch.Services.SymbolOutline
147
148
protected override void add_tooltips (Code.Widgets.SourceList.ExpandableItem root) {
149
foreach (var parent in root.children) {
150
- add_tooltip ((Code.Widgets.SourceList.ExpandableItem) parent);
+ if (parent is Code.Widgets.SourceList.ExpandableItem) {
151
+ add_tooltip ((Code.Widgets.SourceList.ExpandableItem) parent);
152
+ }
153
}
154
155
0 commit comments