wxPropertyGrid - clear 'property changed' effect

BlitzMax Forums/Brucey's Modules/wxPropertyGrid - clear 'property changed' effect

plash(Posted 2008) [#1]
When I change the value of a property, it's text becomes bold. I need to set it back to normal text style when the user selects a different gadget (because it can still seem like you changed the value of a property, when you didn't).

Is there a way to do this?

EDIT: Ugh, I just realized how horribly I wrote that.


Brucey(Posted 2008) [#2]
In wxPropertyGrid, you can use one of these :
	Method ClearModifiedStatus()
	Method ClearPropertyModifiedStatus(prop:wxPGProperty)
	Method ClearPropertyModifiedStatusByName(name:String)

Sync to get the last two... ;-)


plash(Posted 2008) [#3]
Tyvm.