From e8e053095b221a73d1469b3caa0aaffeb87bb14d Mon Sep 17 00:00:00 2001 From: Imbris Date: Sun, 1 Sep 2019 16:41:40 -0400 Subject: [PATCH] Remove copy-pasted comment --- voxygen/src/ui/widgets/image_frame.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/voxygen/src/ui/widgets/image_frame.rs b/voxygen/src/ui/widgets/image_frame.rs index ee63f76bc5..ea76f82a2e 100644 --- a/voxygen/src/ui/widgets/image_frame.rs +++ b/voxygen/src/ui/widgets/image_frame.rs @@ -5,18 +5,10 @@ use conrod_core::{ widget_ids, Color, Colorable, Positionable, Rect, Sizeable, UiCell, Widget, WidgetCommon, }; -/// Linear value selection. -/// -/// If the slider's width is greater than its height, it will automatically become a horizontal -/// slider, otherwise it will be a vertical slider. -/// -/// Its reaction is triggered if the value is updated or if the mouse button is released while -/// the cursor is above the rectangle. #[derive(Clone, WidgetCommon)] pub struct ImageFrame { #[conrod(common_builder)] common: widget::CommonBuilder, - // TODO: use type that is not just an array // Edge images [t, b, r, l] edges: [image::Id; 4], edge_src_rects: [Option; 4],