mirror of
https://github.com/edubart/otclient.git
synced 2025-12-01 15:36:50 +01:00
introduce statictext
This commit is contained in:
@@ -51,7 +51,8 @@ namespace Fw
|
||||
darkTeal = 0xff808000,
|
||||
gray = 0xffa0a0a0,
|
||||
darkGray = 0xff808080,
|
||||
lightGray = 0xffc0c0c0
|
||||
lightGray = 0xffc0c0c0,
|
||||
orange = 0xffff8c00
|
||||
};
|
||||
|
||||
enum Key : uint8 {
|
||||
|
||||
@@ -153,6 +153,8 @@ inline std::istream& operator>>(std::istream& in, Color& color)
|
||||
color = Fw::darkGray;
|
||||
} else if(tmp == "lightGray") {
|
||||
color = Fw::lightGray;
|
||||
} else if(tmp == "orange") {
|
||||
color = Fw::orange;
|
||||
} else {
|
||||
in.seekg(-tmp.length(), ios_base::cur);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user