add message when failed to load thumbs from cloud
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#include "pch.h"
|
||||
#include "app.h"
|
||||
#include "log.h"
|
||||
#include "node.h"
|
||||
#include "layout.h"
|
||||
@@ -28,6 +29,21 @@
|
||||
#include "node_dialog_cloud.h"
|
||||
#include "node_combobox.h"
|
||||
|
||||
void Node::async_start()
|
||||
{
|
||||
App::I.async_start();
|
||||
}
|
||||
|
||||
void Node::async_update()
|
||||
{
|
||||
App::I.async_update();
|
||||
}
|
||||
|
||||
void Node::async_end()
|
||||
{
|
||||
App::I.async_end();
|
||||
}
|
||||
|
||||
void Node::watch(std::function<void(Node*)> observer)
|
||||
{
|
||||
observer(this);
|
||||
|
||||
Reference in New Issue
Block a user