summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Jonathan Li <30177086+MonliH@users.noreply.github.com>2020-10-17 10:48:31 -0400
committerLibravatar Jonathan Li <30177086+MonliH@users.noreply.github.com>2020-10-17 10:48:31 -0400
commit461499dd62fdacd3dcbe9ffec5c069b3468d4238 (patch)
tree47871a737aa7bd75e87a9a6296d239cac787ca84 /native
parent7c242772108b5be6812443a021af37127686e52e (diff)
downloadiced-461499dd62fdacd3dcbe9ffec5c069b3468d4238.tar.gz
iced-461499dd62fdacd3dcbe9ffec5c069b3468d4238.tar.bz2
iced-461499dd62fdacd3dcbe9ffec5c069b3468d4238.zip
Remove entirely
Diffstat (limited to 'native')
-rw-r--r--native/src/widget/column.rs5
-rw-r--r--native/src/widget/row.rs5
2 files changed, 0 insertions, 10 deletions
diff --git a/native/src/widget/column.rs b/native/src/widget/column.rs
index a003c584..4fd6e065 100644
--- a/native/src/widget/column.rs
+++ b/native/src/widget/column.rs
@@ -9,11 +9,6 @@ use crate::{
use std::u32;
/// A container that distributes its contents vertically.
-///
-/// A [`Column`] will not fill the horizontal space of its container. (set to [`Length::shrink`] by defualt)
-///
-/// [`Column`]: struct.Column.html
-/// [`Length::shrink`]: ../../enum.Length.html
#[allow(missing_debug_implementations)]
pub struct Column<'a, Message, Renderer> {
spacing: u16,
diff --git a/native/src/widget/row.rs b/native/src/widget/row.rs
index dd85a543..846940c6 100644
--- a/native/src/widget/row.rs
+++ b/native/src/widget/row.rs
@@ -9,11 +9,6 @@ use crate::{
use std::u32;
/// A container that distributes its contents horizontally.
-///
-/// A [`Row`] will not fill the horizontal space of its container. (set to [`Length::shrink`] by defualt)
-///
-/// [`Row`]: struct.Row.html
-/// [`Length::shrink`]: ../../enum.Length.html
#[allow(missing_debug_implementations)]
pub struct Row<'a, Message, Renderer> {
spacing: u16,