You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Version 5.6.0 (current version)
Fixed:
- Issues and possible errors with dropdowns/checkboxes/cell edits
- `delete_dropdown()`/`delete_checkbox()` issues
Changed:
- Deprecated external functions `create_text_editor()`/`get_text_editor_value()`/`bind_text_editor_set()` as they no longer worked both externally and internally, use `open_cell()` instead
- Renamed internal function `get_text_editor_value()` to `close_text_editor()`
Improved:
- Slightly boost performance if there are many cells onscreen and gridlines are showing
- You can now use the scroll wheel in the header to vertically scroll if there are multiple lines in the column headers
- Improvements to text editor
- Text now draws slightly closer to cell edges in certain scenarios
- Improved visibility of dropdown box against sheet background
- Improved dropdown window height
- black theme selected cells border color
- light green theme selected cells background color
- Function utilises the currently selected cell in the main table, even if a column/row is selected, to open a non selected cell first use `set_currently_selected()` to set the cell to open.
1304
1307
1305
1308
___
1306
1309
1310
+
Open the currently selected cell but in the header.
1307
1311
```python
1308
-
set_text_editor_value(text="", r=None, c=None)
1312
+
open_header_cell(ignore_existing_editor=True)
1309
1313
```
1314
+
- Also uses currently selected cell, which you can set with `set_currently_selected()`.
1310
1315
1311
1316
___
1312
1317
1318
+
Open the currently selected cell but in the index.
1313
1319
```python
1314
-
bind_text_editor_set(func, row, column)
1320
+
open_index_cell(ignore_existing_editor=True)
1315
1321
```
1322
+
- Also uses currently selected cell, which you can set with `set_currently_selected()`.
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,17 @@
1
-
### Version 5.6.0 (in development)
1
+
### Version 5.6.0 (current version)
2
2
Fixed:
3
-
- Issues and possible errors with dropdowns/checkboxes
3
+
- Issues and possible errors with dropdowns/checkboxes/cell edits
4
4
-`delete_dropdown()`/`delete_checkbox()` issues
5
5
6
6
Changed:
7
-
- Improvements to text editor
7
+
- Deprecated external functions `create_text_editor()`/`get_text_editor_value()`/`bind_text_editor_set()` as they no longer worked both externally and internally, use `open_cell()` instead
8
+
- Renamed internal function `get_text_editor_value()` to `close_text_editor()`
9
+
10
+
Improved:
11
+
- Slightly boost performance if there are many cells onscreen and gridlines are showing
8
12
- You can now use the scroll wheel in the header to vertically scroll if there are multiple lines in the column headers
9
-
- Main table text now draws slightly closer to cell edges
13
+
- Improvements to text editor
14
+
- Text now draws slightly closer to cell edges in certain scenarios
10
15
- Improved visibility of dropdown box against sheet background
0 commit comments