Remove direct TRACEARGS() calls
build / build (Debug, macos-latest, lua, cli) (push) Has been cancelled Details
build / build (Debug, macos-latest, noscripts, cli) (push) Has been cancelled Details
build / build (Debug, ubuntu-latest, lua, cli) (push) Has been cancelled Details
build / build (Debug, ubuntu-latest, noscripts, cli) (push) Has been cancelled Details
build / build (Debug, windows-latest, lua, cli) (push) Has been cancelled Details
build / build (Debug, windows-latest, noscripts, cli) (push) Has been cancelled Details
build / build (RelWithDebInfo, macos-latest, lua, gui) (push) Has been cancelled Details
build / build (RelWithDebInfo, ubuntu-latest, lua, gui) (push) Has been cancelled Details
build / build (RelWithDebInfo, windows-latest, lua, gui) (push) Has been cancelled Details

This commit is contained in:
David Capello 2025-10-01 16:53:07 -03:00
parent 577caa4793
commit 107e846911
3 changed files with 3 additions and 8 deletions

View File

@ -34,7 +34,6 @@ namespace app { namespace script {
template<> template<>
void push_value_to_lua(lua_State* L, const std::nullptr_t&) void push_value_to_lua(lua_State* L, const std::nullptr_t&)
{ {
TRACEARGS("push_value_to_lua nullptr_t");
lua_pushnil(L); lua_pushnil(L);
} }

View File

@ -1,5 +1,5 @@
// Aseprite // Aseprite
// Copyright (C) 2019-2023 Igara Studio S.A. // Copyright (C) 2019-2025 Igara Studio S.A.
// //
// This program is distributed under the terms of // This program is distributed under the terms of
// the End-User License Agreement for Aseprite. // the End-User License Agreement for Aseprite.
@ -50,10 +50,8 @@ TaskWidget::TaskWidget(const Type type, base::task::func_t&& func)
} }
else if (m_progressBar.parent()) { else if (m_progressBar.parent()) {
float v = m_task.progress(); float v = m_task.progress();
if (v > 0.0f) { if (v > 0.0f)
TRACEARGS("progressBar setValue", int(std::clamp(v * 100.0f, 0.0f, 100.0f)));
m_progressBar.setValue(int(std::clamp(v * 100.0f, 0.0f, 100.0f))); m_progressBar.setValue(int(std::clamp(v * 100.0f, 0.0f, 100.0f)));
}
} }
}); });
m_monitorTimer.start(); m_monitorTimer.start();

View File

@ -1,5 +1,5 @@
// Aseprite Steam Wrapper // Aseprite Steam Wrapper
// Copyright (c) 2020-2024 Igara Studio S.A. // Copyright (c) 2020-2025 Igara Studio S.A.
// Copyright (c) 2016 David Capello // Copyright (c) 2016 David Capello
// //
// This file is released under the terms of the MIT license. // This file is released under the terms of the MIT license.
@ -153,8 +153,6 @@ public:
CallbackMsg_t msg; CallbackMsg_t msg;
if (SteamAPI_ManualDispatch_GetNextCallback(m_pipe, &msg)) { if (SteamAPI_ManualDispatch_GetNextCallback(m_pipe, &msg)) {
// TRACEARGS("SteamAPI_ManualDispatch_GetNextCallback", msg.callback);
bool disconnected = false; bool disconnected = false;
switch (msg.callback) { switch (msg.callback) {
case kSteamServersDisconnected: case kSteamServersDisconnected: