diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-07-18 00:44:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-18 00:44:45 +0200 |
commit | 3183834c5d5dd27e1be4f581c0fe1a8bef3c4a6e (patch) | |
tree | 46abac2d3fffeddd52548d09b44d4a1cbe6a7bda /doc/base | |
parent | 523e46ad0a915364de92d209ae59be14fbb3a7a4 (diff) | |
parent | 20c7f2bded2ed4cd30eb6e0c22b1e2605a59500d (diff) |
Merge pull request #5657 from Paulb23/block_caret
Added block caret to TextEdit
Diffstat (limited to 'doc/base')
-rw-r--r-- | doc/base/classes.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 50d550f6b2..1a22b4926a 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -39234,6 +39234,20 @@ Set the text editor caret blink speed. Cannot be less then or equal to 0. </description> </method> + <method name="cursor_set_block_mode"> + <argument index="0" name="enable" type="bool"> + </argument> + <description> + Set the text editor caret to block mode. + </description> + </method> + <method name="cursor_is_block_mode" qualifiers="const"> + <return type="bool"> + </return> + <description> + Gets whether the text editor caret is in block mode. + </description> + </method> <method name="cursor_set_column"> <argument index="0" name="column" type="int"> </argument> @@ -39524,6 +39538,8 @@ </theme_item> <theme_item name="breakpoint_color" type="Color"> </theme_item> + <theme_item name="caret_background_color" type="Color"> + </theme_item> <theme_item name="caret_color" type="Color"> </theme_item> <theme_item name="completion" type="StyleBox"> |