_dragging fixes windows
Some checks are pending
Build Android / Game (Android, Release ARM64) (push) Waiting to run
Build iOS / Game (iOS, Release ARM64) (push) Waiting to run
Build Linux / Editor (Linux, Development x64) (push) Waiting to run
Build Linux / Game (Linux, Release x64) (push) Waiting to run
Build macOS / Editor (Mac, Development ARM64) (push) Waiting to run
Build macOS / Game (Mac, Release ARM64) (push) Waiting to run
Build Windows / Editor (Windows, Development x64) (push) Waiting to run
Build Windows / Game (Windows, Release x64) (push) Waiting to run
Cooker / Cook (Mac) (push) Waiting to run
Tests / Tests (Linux) (push) Waiting to run
Tests / Tests (Windows) (push) Waiting to run

This commit is contained in:
2025-01-19 22:43:50 +02:00
parent 427c18c54c
commit 692183e1dd
5 changed files with 28 additions and 58 deletions

View File

@@ -1310,7 +1310,6 @@ DragDropEffect SDLWindow::DoDragDrop(const StringView& data, const Float2& offse
#endif
}
//SetOpacity(0.1f);
#if PLATFORM_LINUX
if (SDLPlatform::UsesWayland()
DoDragDropWayland(String("notawindow"), dragSourceWindow, dragOffset);
@@ -1353,17 +1352,5 @@ DragDropEffect SDLWindow::DoDragDrop(const StringView& data, const Float2& offse
return DragDropEffect::None;
}
void SDLWindow::StartDragging(const Float2& offset, Window* dragSourceWindow)
{
}
void SDLWindow::StopDragging()
{
LOG(Info, "StopDragging");
SetOpacity(1.0f);
//draggingActive = false;
}
#endif