Rename the PaintState variants.

This commit is contained in:
Ms2ger 2015-01-04 11:36:47 +01:00
parent 4d47817bae
commit 138081ba25
6 changed files with 22 additions and 23 deletions

View file

@ -16,8 +16,8 @@ use constellation_msg::PipelineId;
/// The status of the painter.
#[deriving(PartialEq, Clone)]
pub enum PaintState {
IdlePaintState,
PaintingPaintState,
Idle,
Painting,
}
#[deriving(Eq, Ord, PartialEq, PartialOrd, Clone, Show)]