Просмотр исходного кода

Update menu.adoc

Removed unneeded new line breaks.
mitm001 9 лет назад
Родитель
Сommit
d2942b80ad
1 измененных файлов с 6 добавлено и 4 удалено
  1. 6 4
      src/docs/asciidoc/jme3/contributions/tonegodgui/menu.adoc

+ 6 - 4
src/docs/asciidoc/jme3/contributions/tonegodgui/menu.adoc

@@ -10,10 +10,10 @@ ifdef::env-github,env-browser[:outfilesuffix: .adoc]
 
 == Menu Class
 
-The Menu class extends ScrollArea as Menu’s can be resizable and scrollable if the behaviors are enabled.+
-+
-Menus contain a list of MenuItems, which provide mapping for sub-menus. This implementation of menu’s negates the need for any form of Menu Manager as the Screen, by default, handles delegating Mouse Events and therefore is (in a sense) a Menu Manager. Menus utilize a single text element with separate highlight element, to keep the rendered meshes to count of 3 for any length menu.+
-+
+The Menu class extends ScrollArea as Menu’s can be resizable and scrollable if the behaviors are enabled.
+
+Menus contain a list of MenuItems, which provide mapping for sub-menus. This implementation of menu’s negates the need for any form of Menu Manager as the Screen, by default, handles delegating Mouse Events and therefore is (in a sense) a Menu Manager. Menus utilize a single text element with separate highlight element, to keep the rendered meshes to count of 3 for any length menu.
+
 Features:
 
 *  Unlimited menu item list
@@ -25,6 +25,7 @@ Menu utilizes the standard 3 constructors as shown in the <<jme3/contributions/t
 *  isScrollable – appended to the end of the parameter list in each constructor
 
 
+
 === Abstract Event Methods:
 
 [source,java]
@@ -35,6 +36,7 @@ public void onMenuItemClicked(int index, Object value);
 ----
 
 
+
 === Methods specific to the Menu Class:
 
 [source,java]