Add litera 2

This commit is contained in:
2024-12-12 16:35:56 +03:00
parent 463a550209
commit 45c833b6f3
5 changed files with 205 additions and 98 deletions

View File

@@ -518,8 +518,8 @@ func connect_columns(dest_node: Node, event_name: String, callback: String, clmn
assert(i_col >= 0 and i_col < columns, 'ошибка: нет такой колонки: %d' % i_col)
var node = get_node2(i_col, i_row)
if node.has_meta(META_CALLABLE):
var conn = node.get_meta(META_CALLABLE)
node.disconnect(event_name, conn)
var conne = node.get_meta(META_CALLABLE)
node.disconnect(event_name, conne)
var conn = Callable(dest_node, callback).bind([node] + user_data)
var rc = node.connect(event_name, conn)
if rc == Error.OK: