From 6985e8f41fac7394fb62f42297a1e7d19c713834 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 19 Jan 2021 10:00:45 -0700 Subject: [PATCH] Update documentation words --- docs/widget-layouts.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/widget-layouts.md b/docs/widget-layouts.md index 215b026b0f..e7f72e2001 100644 --- a/docs/widget-layouts.md +++ b/docs/widget-layouts.md @@ -32,13 +32,13 @@ therefore fewer messages can be shown). The `index` for a widget determines which order the widgets show up in from left to right. Widgets without an `index` will show up as the rightmost widgets. Tiebreaks (same `index` or multiple defined without an `index`) are resolved by comparing widget IDs. A maximum of 3 widgets can be in the top -container - any which exceed this will be ignored. Smaller numbers represent leftmost widgets. +container - any which exceed this will be ignored (placed into the `right` container). Smaller numbers +represent leftmost widgets. The `width` is relative width within the container in percentage points. This will be clamped to a -range of 0-100 (inclusive). The rightmost widget will have its percentage adjusted to fill the -container appropriately, shrinking and growing if required. For example, if three widgets are in the -top container at 40% width each then the 3rd widget will be shrunk to 20% because 120% > 100%. -Similarly, if all three widgets were set to 10% width each then the 3rd widget would grow to be 80%. +range of 0-100 (inclusive). The widgets will attempt to scale to relative proportions when more than +100% space is allocated. For example, if 3 widgets are defined at 40% width each then the client will +attempt to show them at 33% width each. Note that the client may impose minimum widths on the widgets, such as a 10% minimum to avoid pinning hidden widgets. In general, widgets defined in the 30-70% range each will be free of these restrictions.