summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2013-04-25 17:25:35 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2013-04-26 17:38:42 +0900
commit4db472aa3aa0c7958b3da20dea1b694219afc4f0 (patch)
treef3a9e0229b2e647485cd9a02a2320e3a935f2024
parentfdc3ea754df3f2e838dae4035dfd4e47dcb1614c (diff)
downloadelementary-4db472aa3aa0c7958b3da20dea1b694219afc4f0.tar.gz
test_inwin.c: added more description about the style and fixed formatting.
-rw-r--r--src/bin/test_inwin.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/bin/test_inwin.c b/src/bin/test_inwin.c
index 14ab16849..2115176a2 100644
--- a/src/bin/test_inwin.c
+++ b/src/bin/test_inwin.c
@@ -85,11 +85,11 @@ test_inwin(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info
lb = elm_label_add(win);
elm_object_text_set(lb,
- "This is an \"inwin\" - a window in a<br/>"
- "window. This is handy for quick popups<br/>"
- "you want centered, taking over the window<br/>"
- "until dismissed somehow. Unlike hovers they<br/>"
- "don't hover over their target.");
+ "This is an \"inwin\" - a window in a<br/>"
+ "window. This is handy for quick popups<br/>"
+ "you want centered, taking over the window<br/>"
+ "until dismissed somehow. Unlike hovers they<br/>"
+ "don't hover over their target.");
elm_box_pack_end(bxx, lb);
elm_win_inwin_content_set(inwin, bxx);
evas_object_show(lb);
@@ -112,14 +112,15 @@ test_inwin2(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info
lb = elm_label_add(win);
elm_object_text_set(lb,
- "This is an \"inwin\" - a window in a<br/>"
- "window. This is handy for quick popups<br/>"
- "you want centered, taking over the window<br/>"
- "until dismissed somehow. Unlike hovers they<br/>"
- "don't hover over their target.<br/>"
- "<br/>"
- "This inwin style compacts itself vertically<br/>"
- "to the size of its contents minimum size.");
+ "This is an \"inwin\" - a window in a<br/>"
+ "window. This is handy for quick popups<br/>"
+ "you want centered, taking over the window<br/>"
+ "until dismissed somehow. Unlike hovers they<br/>"
+ "don't hover over their target.<br/>"
+ "<br/>"
+ "This \"minimal_vertical\" inwin style compacts<br/>"
+ "itself vertically to the size of its contents<br/> "
+ "minimum size.");
elm_win_inwin_content_set(inwin, lb);
evas_object_show(lb);