Add Debug derive to ObjectStyle (#192)

This commit is contained in:
Alek Ratzloff 2019-08-14 12:36:24 -04:00 committed by Timon
parent ac9c9af490
commit 78dc8c704c

View File

@ -7,7 +7,7 @@ use std::fmt::Display;
use super::Attribute;
/// Struct that contains the style properties that can be applied to a displayable object.
#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct ObjectStyle {
pub fg_color: Option<Color>,
pub bg_color: Option<Color>,