Commit Graph

6 Commits

Author SHA1 Message Date
Angelo Haller 772bfad79f Remove early abort for NULL values in uiprivTableModelSetCellValue.
We are changing the value, update the row!

There are several uses for setting NULL values, IMO all abusing the
API for different causes. Fix those API abuses instead:

- This will cause one unneeded redraw when clicking on table column
  buttons as they signal a click through setting NULL. Possibly use
  a dedicated callback handler for that instead?
- This will fix resetting colors to default, as this is signaled
  through a NULL value.
2020-08-27 14:02:56 -05:00
Angelo Haller b504629cc0 Fix table editing redraw code on all platforms.
This fixes bugs on all platforms not calling uiTableModelRowChanged()
when setting a new value in edit mode. This is now automatically
done in uiprivTableModelSetValue() so that ALL uiTable views are
informed about the update.

Darwin and windows did some custom redrawing which hid this bug.
Unix does frequent unrelated redraw which hide the bug. It can often
be experienced when double clicking a checkbox.
2020-08-25 13:32:29 -05:00
Pietro Gagliardi f3882d6124 Cleaned up color access across platforms. 2018-06-24 14:22:05 -04:00
Pietro Gagliardi acb40964f3 Deduplicated editable logic across platforms. 2018-06-24 11:41:19 -04:00
Pietro Gagliardi 4dbf1994a6 Deduplicated the default text column parameters across platforms. 2018-06-24 00:45:54 -04:00
Pietro Gagliardi 74ec21f4c7 Turned the direct method calls on uiTableModel into functions to make the call sites look a bit cleaner. More stuff will go into common/tablemodel.c... 2018-06-23 23:35:42 -04:00