tksheet 7.4.22__tar.gz → 7.4.23__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tksheet-7.4.22/tksheet.egg-info → tksheet-7.4.23}/PKG-INFO +1 -1
- {tksheet-7.4.22 → tksheet-7.4.23}/pyproject.toml +1 -1
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/__init__.py +1 -1
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/main_table.py +2 -2
- {tksheet-7.4.22 → tksheet-7.4.23/tksheet.egg-info}/PKG-INFO +1 -1
- {tksheet-7.4.22 → tksheet-7.4.23}/LICENSE.txt +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/README.md +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/setup.cfg +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/colors.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/column_headers.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/constants.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/find_window.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/formatters.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/functions.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/other_classes.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/row_index.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/sheet.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/sheet_options.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/sorting.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/text_editor.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/themes.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/tksheet_types.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/top_left_rectangle.py +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet.egg-info/SOURCES.txt +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet.egg-info/dependency_links.txt +0 -0
- {tksheet-7.4.22 → tksheet-7.4.23}/tksheet.egg-info/top_level.txt +0 -0
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
6
6
|
name = "tksheet"
|
7
7
|
description = "Tkinter table / sheet and treeview widget"
|
8
8
|
readme = "README.md"
|
9
|
-
version = "7.4.
|
9
|
+
version = "7.4.23"
|
10
10
|
authors = [{ name = "ragardner", email = "github@ragardner.simplelogin.com" }]
|
11
11
|
requires-python = ">=3.8"
|
12
12
|
license = {file = "LICENSE.txt"}
|
@@ -1324,7 +1324,7 @@ class MainTable(tk.Canvas):
|
|
1324
1324
|
and self.input_valid_for_cell(r, datacn, val, ignore_empty=True)
|
1325
1325
|
)
|
1326
1326
|
):
|
1327
|
-
rows[r][datacn] = self.format_value(
|
1327
|
+
rows[r][datacn] = self.format_value(r, datacn, val)
|
1328
1328
|
ctr += 1
|
1329
1329
|
if ctr:
|
1330
1330
|
event_data = self.add_rows(
|
@@ -1374,7 +1374,7 @@ class MainTable(tk.Canvas):
|
|
1374
1374
|
and self.input_valid_for_cell(datarn, c, val, ignore_empty=True)
|
1375
1375
|
)
|
1376
1376
|
):
|
1377
|
-
columns[c][datarn] = self.format_value(datarn,
|
1377
|
+
columns[c][datarn] = self.format_value(datarn, c, val)
|
1378
1378
|
ctr += 1
|
1379
1379
|
if ctr:
|
1380
1380
|
event_data = self.add_columns(
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|