docs: fix broken links (#6910)

This commit is contained in:
Narukara
2024-10-10 01:45:04 +08:00
committed by GitHub
parent fc3ee875ab
commit e470349974
13 changed files with 21 additions and 21 deletions

View File

@@ -11,8 +11,8 @@ The Button Matrix object is a lightweight way to display multiple
buttons in rows and columns. Lightweight because the buttons are not
actually created but just virtually drawn on the fly. This way, one
button use only eight extra bytes of memory instead of the ~100-150
bytes a normal `Button </widgets/button>`__ object plus the 100 or so bytes
for the `Label </widgets/label>`__ object.
bytes a normal `Button <widgets/button>`__ object plus the 100 or so bytes
for the `Label <widgets/label>`__ object.
The Button matrix is added to the default group (if one is set). Besides
the Button matrix is an editable object to allow selecting and clicking

View File

@@ -24,7 +24,7 @@ attached to the calendar.
Parts and Styles
****************
The calendar object uses the `Button matrix </widgets/buttonmatrix>`__
The calendar object uses the `Button matrix <widgets/buttonmatrix>`__
object under the hood to arrange the days into a matrix.
- :cpp:enumerator:`LV_PART_MAIN` The background of the calendar. Uses all the background related style properties.

View File

@@ -173,7 +173,7 @@ Note that :cpp:enumerator:`LV_CHART_UPDATE_MODE_SHIFT` also changes the
Tick marks and labels
---------------------
With the help of `Scale </widgets/scale>`__, vertical and horizontal scales can be added in a very flexible way.
With the help of `Scale <widgets/scale>`__, vertical and horizontal scales can be added in a very flexible way.
See the example below to learn more.
Zoom

View File

@@ -34,7 +34,7 @@ Image sources
To set the image in a state, use the
:cpp:expr:`lv_imagebutton_set_src(imagebutton, LV_IMAGEBUTTON_STATE_..., src_left, src_center, src_right)`.
The image sources work the same as described in the `Image object </widgets/image>`__
The image sources work the same as described in the `Image object <widgets/image>`__
except that "Symbols" are not supported by the Image button. Any of the sources can ``NULL``.
If only ``src_center`` is specified, the width of the widget will be set automatically to the

View File

@@ -7,7 +7,7 @@ Slider (lv_slider)
Overview
********
The Slider object looks like a `Bar </widgets/bar>`__ supplemented with
The Slider object looks like a `Bar <widgets/bar>`__ supplemented with
a knob. The knob can be dragged to set a value. Just like Bar, Slider
can be vertical or horizontal.
@@ -80,7 +80,7 @@ Events
being dragged.
- :cpp:enumerator:`LV_EVENT_RELEASED` Sent when the slider has just been released.
See the events of the `Bar </widgets/bar>`__ too.
See the events of the `Bar <widgets/bar>`__ too.
Learn more about :ref:`events`.

View File

@@ -37,7 +37,7 @@ Events
No special events are sent to the Spinner.
See the events of the `Arc </widgets/arc>`__ too.
See the events of the `Arc <widgets/arc>`__ too.
Learn more about :ref:`events`.

View File

@@ -7,8 +7,8 @@ Text area (lv_textarea)
Overview
********
The Text Area is a `Base object </widgets/obj.html>`__ with a
`Label </widgets/label.html>`__ and a cursor on it. Texts or characters
The Text Area is a `Base object <widgets/obj.html>`__ with a
`Label <widgets/label.html>`__ and a cursor on it. Texts or characters
can be added to it. Long lines are wrapped and when the text becomes
long enough the Text area can be scrolled.