lmgrClearLibDisplayColorOverride
lmgrClearLibDisplayColorOverride(g_libNames) =>t / nil
Description
Removes the color display override setting specified by lmgrSetLibDisplayOverride. When only color is specified in the override, the entire override for the library is removed.
Arguments
|
A string or a list of strings. A string must be a valid library name within the current library list. A list of strings can have multiple library names. |
Value Returned
|
Removes the library display override setting for the color specified by |
|
Examples
Removes the color display override setting specified by lmgrSetLibDisplayOverride.
car( errset( lmgrSetLibDisplayOverride( list( "US_8ths" "basic") ?icon "test.png" ?color "green" ) t ) )
=>t
lmgrGetLibDisplayOverride( "basic")
=>(nil icon ("test.png") color ("green"))
lmgrClearLibDisplayColorOverride( "basic" )
=>t
lmgrGetLibDisplayOverride( "basic")
=>(nil icon ("test.png"))
Related Topics
Return to top