From 1f91293363039a25cda51b59f7a791ebfa8de691 Mon Sep 17 00:00:00 2001 From: don-tnowe <67479453+don-tnowe@users.noreply.github.com> Date: Wed, 21 Sep 2022 05:34:52 +0300 Subject: [PATCH] Text adjustments --- addons/resources_speadsheet_view/editor_view.tscn | 8 ++++++-- addons/resources_speadsheet_view/text_editing_utils.gd | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/addons/resources_speadsheet_view/editor_view.tscn b/addons/resources_speadsheet_view/editor_view.tscn index 8716280..b40b892 100644 --- a/addons/resources_speadsheet_view/editor_view.tscn +++ b/addons/resources_speadsheet_view/editor_view.tscn @@ -354,7 +354,9 @@ Possible inputs: If clipboard contains as many lines as there are cells selected, each line is pasted into a separate cell. Made by Don Tnowe. 2022. -[url]https://twitter.com/don_tnowe[/url]" +[url]https://twitter.com/don_tnowe[/url] +Issues and contribution: +[url]https://github.com/don-tnowe/godot-resources-as-sheets-plugin[/url]" text = "Edit Resources as Spreadsheet \"Welp, it is what it sounds like!\" @@ -371,7 +373,9 @@ Possible inputs: If clipboard contains as many lines as there are cells selected, each line is pasted into a separate cell. Made by Don Tnowe. 2022. -https://twitter.com/don_tnowe" +https://twitter.com/don_tnowe +Issues and contribution: +https://github.com/don-tnowe/godot-resources-as-sheets-plugin" [connection signal="focus_exited" from="." to="." method="_on_focus_exited"] [connection signal="text_entered" from="HeaderContentSplit/VBoxContainer/HBoxContainer/HBoxContainer/Path" to="." method="_on_Path_text_entered"] diff --git a/addons/resources_speadsheet_view/text_editing_utils.gd b/addons/resources_speadsheet_view/text_editing_utils.gd index a7d25eb..2d0e3f1 100644 --- a/addons/resources_speadsheet_view/text_editing_utils.gd +++ b/addons/resources_speadsheet_view/text_editing_utils.gd @@ -6,6 +6,8 @@ const non_typing_space := "●" const whitespace_chars := [ ord(" "), ord(","), + ord(":"), + ord("-"), ord(";"), ord("("), ord(")"),