From 362d4d9cbd90528aa8b313a25b0315e623df8740 Mon Sep 17 00:00:00 2001 From: Bart Hakvoort Date: Sun, 26 Sep 2004 18:27:15 +0000 Subject: [PATCH] changed colors of ext2, ext3 and linux-swap --- ChangeLog | 4 ++-- src/Partition.cc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index b28ce56f..79f1ad83 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,8 @@ 2004-09-26 Bart Hakvoort * src/Win_GParted.cc: fixed bug with check for max amount of partitions while pasting a copied partition. - - + * src/Partition.cc: changed colors of ext2, ext3 and linux-swap + 2004-09-25 Raphael Higino * src/Win_GParted.cc: Fixed typo bugs (word "than" written diff --git a/src/Partition.cc b/src/Partition.cc index f89bffc4..e3539936 100644 --- a/src/Partition.cc +++ b/src/Partition.cc @@ -61,11 +61,11 @@ void Partition::Set_Unallocated( Sector sector_start, Sector sector_end, bool in Glib::ustring Partition::Get_Color( const Glib::ustring & filesystem ) { // very ugly, but somehow i can't figure out a more efficient way. must be lack of sleep or so... :-) //purple teints - if ( filesystem == "ext2" ) return "purple" ; - else if ( filesystem == "ext3" ) return "#C994EB"; + if ( filesystem == "ext2" ) return "#9DB8D2" ; + else if ( filesystem == "ext3" ) return "#7590AE"; //brown - else if ( filesystem == "linux-swap" ) return "brown" ; + else if ( filesystem == "linux-swap" ) return "#C1665A" ; //greenisch stuff.. else if ( filesystem == "fat16" ) return "green" ;