widgets: policycheck_view: hinting NumericBox, typo correction

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-07-24 19:54:30 +02:00
parent bceec88741
commit f983eca9aa

View File

@@ -240,7 +240,9 @@ impl Template for PolicyCheckView {
)
.build(ctx);
let _policy_check_numeric_box = NumericBox::new()
// WIP: this widget type should handle our target natively
// but it isn't able to get textinput ... yet
let _policy_check_numeric_box = NumericBox::new()
.id(ID_POLICY_CHECK_POLICY_NUMBER)
.h_align("start")
.width(100)
@@ -305,7 +307,7 @@ impl Template for PolicyCheckView {
// row 3: Sum HashMap elements
.child(policy_data_count_block)
// row 4: Policy Check BOttom
// row 4: Policy Check Bottom
.child(policy_check_bottom_bar)
.build(ctx),
)