Add tag icon in thumbnail to identify as user defined

This commit is contained in:
Bruno
2021-08-04 00:29:31 +02:00
parent 9a87764949
commit 5eddfcf196
3 changed files with 12 additions and 2 deletions

View File

@@ -82,9 +82,11 @@ protected:
struct SessionInformation {
std::string description;
FrameBufferImage *thumbnail;
bool user_thumbnail_;
SessionInformation() {
description = "";
thumbnail = nullptr;
user_thumbnail_ = false;
}
};