UI: Rename Describe() method for logging.

This commit is contained in:
Unknown W. Brackets 2021-02-21 12:42:56 -08:00
parent dd980905a2
commit 7c72fe7110
4 changed files with 11 additions and 11 deletions

View file

@ -135,7 +135,7 @@ void View::Query(float x, float y, std::vector<View *> &list) {
}
}
std::string View::Describe() const {
std::string View::DescribeLog() const {
return StringFromFormat("%0.1f,%0.1f %0.1fx%0.1f", bounds_.x, bounds_.y, bounds_.w, bounds_.h);
}