Sync classref with current source

This commit is contained in:
Rémi Verschelde
2020-01-23 23:15:53 +01:00
parent 2e4df1e5c2
commit acb2260336
125 changed files with 1868 additions and 2258 deletions

View File

@@ -16,7 +16,9 @@ Control that provides single-line string editing.
Description
-----------
LineEdit provides a single-line string editor, used for text fields. It features many built-in shortcuts which will always be available: (the Ctrl here maps to Command on macOS)
LineEdit provides a single-line string editor, used for text fields.
It features many built-in shortcuts which will always be available (``Ctrl`` here maps to ``Command`` on macOS):
- Ctrl + C: Copy
@@ -560,9 +562,9 @@ Selects characters inside ``LineEdit`` between ``from`` and ``to``. By default,
::
text = "Welcome"
select() # Will select "Welcome"
select(4) # Will select "ome"
select(2, 5) # Will select "lco"
select() # Will select "Welcome".
select(4) # Will select "ome".
select(2, 5) # Will select "lco".
----