Skip to content

Commit

Permalink
tools: fix current name not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
dbartolini committed Feb 19, 2025
1 parent a3c9d1d commit 91ea98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/level_editor/level_tree_view.vala
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public class LevelTreeView : Gtk.Box
_tree_selection.selected_foreach((model, path, iter) => {
Value name;
model.get_value(iter, Column.NAME, out name);
sb.text = (string)name;
sb.value = (string)name;
return;
});
sb.activate.connect(() => { dg.response(ResponseType.OK); });
Expand Down

0 comments on commit 91ea98e

Please sign in to comment.