Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Use libdbus for trays on Linux instead of Ayatana and GTK#14582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
eafton wants to merge19 commits intolibsdl-org:main
base:main
Choose a base branch
Loading
fromeafton:tray-dbus
Draft
Changes from1 commit
Commits
Show all changes
19 commits
Select commitHold shift + click to select a range
bee5771
Use libdbus for trays on Linux instead of Ayantana/GTK
Dec 3, 2025
14ffcd2
Use libdbus for trays on Linux instead of Ayantana/GTK
Dec 3, 2025
d319ac2
Fix errors
Dec 3, 2025
01d67f7
Patch for older systems
Dec 3, 2025
daa2fbb
Make the menu show up properly
Dec 4, 2025
0dcee90
Fix header order
eaftonDec 4, 2025
7fe09cc
Implement more tray funcs, make callbacks work
Dec 4, 2025
e82e79c
Merge branch 'tray-dbus' of https://github.com/eafton/SDL into tray-dbus
Dec 4, 2025
c4599c3
Fix error in list
Dec 4, 2025
a3f86d1
Implement more tray funcs
Dec 4, 2025
406385f
Attempt at getting this working on KDE
Dec 6, 2025
7e6422e
Fix a nasty segfault
Dec 6, 2025
8821dd7
Attempt at getting this working on KDE
Dec 7, 2025
877bfae
More fixes for GNOME/KDE
Dec 8, 2025
b345b71
More fixes for GNOME/KDE
Dec 8, 2025
5b22e70
Hopefully this should get it to work on KDE
Dec 9, 2025
9e7b5b1
Hopefully this should get it to work on KDE
Dec 10, 2025
cb8e962
KDE fix attempt
Dec 12, 2025
8d1b26d
Add introspection support in the hope of getting this to work on KDE 6
Dec 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Fix errors
  • Loading branch information
eafton committedDec 3, 2025
commitd319ac2c58daa8b97c4592fde104877a02ec3460
4 changes: 2 additions & 2 deletionssrc/tray/unix/SDL_unixtray.c
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -80,7 +80,7 @@ void SDL_SetTrayIcon(SDL_Tray *tray, SDL_Surface *icon)
CHECK_PARAM(!SDL_ObjectValid(tray, SDL_OBJECT_TYPE_TRAY))
{
SDL_InvalidParamError("tray");
return NULL;
return;
}

tray->driver->SetTrayIcon(tray, icon);
Expand All@@ -91,7 +91,7 @@ void SDL_SetTrayTooltip(SDL_Tray *tray, const char *tooltip)
CHECK_PARAM(!SDL_ObjectValid(tray, SDL_OBJECT_TYPE_TRAY))
{
SDL_InvalidParamError("tray");
return NULL;
return;
}

tray->driver->SetTrayTooltip(tray, tooltip);
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp