diff options
Diffstat (limited to 'pages/develop/tutorials/c/hello-world-gui.md.txt')
-rw-r--r-- | pages/develop/tutorials/c/hello-world-gui.md.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/develop/tutorials/c/hello-world-gui.md.txt b/pages/develop/tutorials/c/hello-world-gui.md.txt index 44c79be7d..f3c03ed43 100644 --- a/pages/develop/tutorials/c/hello-world-gui.md.txt +++ b/pages/develop/tutorials/c/hello-world-gui.md.txt | |||
@@ -284,7 +284,7 @@ As you can see the text box takes up one half of the space and button takes up t | |||
284 | 284 | ||
285 | ## Step 5: Adding some Formatting to your Widgets ## | 285 | ## Step 5: Adding some Formatting to your Widgets ## |
286 | 286 | ||
287 | The layout of your window is slightly skewed. In this section you'll learn how to change the space assigned by default to each widget to make your app look better. You''ll also discover how to change the alignment of the text in the text box. | 287 | The layout of your window is slightly skewed. In this section you'll learn how to change the space assigned by default to each widget to make your app look better. You'll also discover how to change the alignment of the text in the text box. |
288 | 288 | ||
289 | To change how much relative space each widget takes up, you use *weight hinting*: in other words you can assign a how much proportional space each widget should take up relative to each other and the overall space available in the container. For example you can add an ``efl_gfx_size_hint_weight_set()`` function to your text box and button like so: | 289 | To change how much relative space each widget takes up, you use *weight hinting*: in other words you can assign a how much proportional space each widget should take up relative to each other and the overall space available in the container. For example you can add an ``efl_gfx_size_hint_weight_set()`` function to your text box and button like so: |
290 | 290 | ||