Skip to content

Commit

Permalink
doc: tweaks to actionbar docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Zen-CODE committed Feb 13, 2018
1 parent a736f28 commit 0fbac3b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions kivy/uix/actionbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
:align: right
The ActionBar widget is like Android's `ActionBar
<http://developer.android.com/guide/topics/ui/actionbar.html>`_
, where items are stacked horizontally.
<http://developer.android.com/guide/topics/ui/actionbar.html>`_, where items
are stacked horizontally. When the area becomes to small, widgets are moved
into the :class:`ActionOverflow` area.
An :class:`ActionBar` contains an :class:`ActionView` with various
:class:`ContextualActionViews <kivy.uix.actionbar.ContextualActionView>`.
Expand All @@ -21,9 +22,10 @@
An :class:`ActionGroup` is used to display :class:`ActionItems <ActionItem>`
in a group. An :class:`ActionView` will always display an :class:`ActionGroup`
after other :class:`ActionItems <ActionItem>`.
An :class:`ActionView` will contain an :class:`ActionOverflow`.
A :class:`ContextualActionView` is a subclass of an :class:`ActionView`.
after other :class:`ActionItems <ActionItem>`. An :class:`ActionView` contains
an :class:`ActionOverflow`, but this is only made visible when required i.e.
the available area is too small to fit all the widgets. A
:class:`ContextualActionView` is a subclass of an:class:`ActionView`.
.. versionchanged:: 1.10.1
:class:`ActionGroup` core rewritten from :class:`Spinner` to pure
Expand Down

0 comments on commit 0fbac3b

Please sign in to comment.