summaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-11-28 15:37:06 -0500
committerGitHub <noreply@github.com>2020-11-28 15:37:06 -0500
commit3260ff4663baed9b2186ee130306dc71e5d521fd (patch)
treedd0ce4b737bede4b643fa0d1680e0b9ff9852747 /src/app
parenta9c1197075d7897cc3066657820eb321434eb0c0 (diff)
feature: Add scroll indicator to keep track of table position in widgets. (#333)
Adds the option to enable an "out of" indicator for scrollable table widgets (using --show_table_scroll_position).
Diffstat (limited to 'src/app')
-rw-r--r--src/app/layout_manager.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/layout_manager.rs b/src/app/layout_manager.rs
index c856c42d..05e73822 100644
--- a/src/app/layout_manager.rs
+++ b/src/app/layout_manager.rs
@@ -868,11 +868,11 @@ pub struct BottomWidget {
#[builder(default = None)]
pub parent_reflector: Option<(WidgetDirection, u64)>,
- /// Top left corner when drawn, for mouse click detection
+ /// Top left corner when drawn, for mouse click detection. (x, y)
#[builder(default = None)]
pub top_left_corner: Option<(u16, u16)>,
- /// Bottom right corner when drawn, for mouse click detection
+ /// Bottom right corner when drawn, for mouse click detection. (x, y)
#[builder(default = None)]
pub bottom_right_corner: Option<(u16, u16)>,
}