xartigas pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=e0ad216aeef4e4451d798a5ecddd6029856bbcf4
commit e0ad216aeef4e4451d798a5ecddd6029856bbcf4 Author: Xavi Artigas <xavierarti...@yahoo.es> Date: Tue Sep 10 17:14:33 2019 +0200 efl_ui/alert_popup: More documentation nitpicks --- src/lib/elementary/efl_ui_alert_popup.eo | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/lib/elementary/efl_ui_alert_popup.eo b/src/lib/elementary/efl_ui_alert_popup.eo index 253de74cf7..8a4e86e863 100644 --- a/src/lib/elementary/efl_ui_alert_popup.eo +++ b/src/lib/elementary/efl_ui_alert_popup.eo @@ -1,13 +1,13 @@ enum @beta Efl.Ui.Alert_Popup_Button { [[Defines the type of the alert button.]] - positive = 0, [[Button having positive meaning. e.g. "Yes"]] - negative, [[Button having negative meaning. e.g. "No"]] - user [[Button having user-defined meaning. e.g. "Cancel"]] + positive = 0, [[Button having positive meaning. E.g. "Yes".]] + negative, [[Button having negative meaning. E.g. "No".]] + user [[Button having user-defined meaning. E.g. "More information".]] } struct @beta Efl.Ui.Alert_Popup_Button_Clicked_Event { [[Information for @[Efl.Ui.Alert_Popup.button,clicked] event.]] - button_type: Efl.Ui.Alert_Popup_Button; [[Clicked button type]] + button_type: Efl.Ui.Alert_Popup_Button; [[Clicked button type.]] } class @beta Efl.Ui.Alert_Popup extends Efl.Ui.Popup @@ -29,12 +29,13 @@ class @beta Efl.Ui.Alert_Popup extends Efl.Ui.Popup Exactly one button may exist for each @Efl.Ui.Alert_Popup_Button type. Repeated calls to set values for the same button type will overwrite previous values. - By default, no buttons are created. + By default, no buttons are created. Once a button is added to the Popup using this property + it cannot be removed. ]] set { } keys { - type: Efl.Ui.Alert_Popup_Button; [[Alert_Popup button type]] + type: Efl.Ui.Alert_Popup_Button; [[Alert_Popup button type.]] } values { text: string; [[Text of the specified button type.]] --