aboutsummaryrefslogtreecommitdiff
path: root/include/Body.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-10-23 07:26:39 +0200
committerdec05eba <dec05eba@protonmail.com>2020-10-23 07:26:39 +0200
commit261b0263f34ffcbe439d68b2e901fd3abbfc1eaf (patch)
tree735d49f2050b52a414766675e4226f3fa8ef0d08 /include/Body.hpp
parent05ce6bac22d498fb2827df72f4c2b86d02826042 (diff)
Re-add creators page
Diffstat (limited to 'include/Body.hpp')
-rw-r--r--include/Body.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Body.hpp b/include/Body.hpp
index 5fde04e..f3498c7 100644
--- a/include/Body.hpp
+++ b/include/Body.hpp
@@ -19,7 +19,7 @@ namespace sf {
namespace QuickMedia {
class Program;
- enum class EmbeddedItemStatus {
+ enum class FetchStatus {
NONE,
LOADING,
FINISHED_LOADING,
@@ -115,7 +115,7 @@ namespace QuickMedia {
std::string post_number;
void *userdata; // Not managed, should be deallocated by whoever sets this
double last_drawn_time;
- EmbeddedItemStatus embedded_item_status = EmbeddedItemStatus::NONE;
+ FetchStatus embedded_item_status = FetchStatus::NONE;
std::shared_ptr<BodyItem> embedded_item; // Used by matrix for example to display reply message body. Note: only the first level of embedded items is rendered (not recursive, this is done on purpose)
ThumbnailMaskType thumbnail_mask_type = ThumbnailMaskType::NONE;
sf::Vector2i thumbnail_size;