ggwave-gui : focus files on addFile when not on IOS

This commit is contained in:
Georgi Gerganov
2020-12-31 12:34:06 +02:00
parent 98ab646780
commit 9790a51f17

View File

@@ -328,7 +328,10 @@ void addFile(
std::memcpy(file.data.data(), dataBuffer, dataSize);
g_fileServer.addFile(std::move(file));
//g_focusFileSend = true;
#ifndef IOS
g_focusFileSend = true;
#endif
}
void addFile(
@@ -341,7 +344,10 @@ void addFile(
file.data = std::move(data);
g_fileServer.addFile(std::move(file));
//g_focusFileSend = true;
#ifndef IOS
g_focusFileSend = true;
#endif
}
std::string generateFileBroadcastMessage() {