diff options
| author | Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com> | 2026-01-31 16:49:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-31 16:49:46 +0100 |
| commit | a394f02e97ad0bf328fa735cbdbfbe026c03655d (patch) | |
| tree | 4fbac2fa4fe6d77f77ee65761f6e8147ae577a4b /src/executableslist.cpp | |
| parent | aa44561e86b6520ee0ab10a58db52b6fdd77d991 (diff) | |
Add executables list to plugin API (#2327)
Diffstat (limited to 'src/executableslist.cpp')
| -rw-r--r-- | src/executableslist.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/executableslist.cpp b/src/executableslist.cpp index c4563f90..b94765fc 100644 --- a/src/executableslist.cpp +++ b/src/executableslist.cpp @@ -364,6 +364,10 @@ void ExecutablesList::dump() const flags.push_back("hide"); } + if (e.flags() & Executable::MinimizeToSystemTray) { + flags.push_back("minimizeToSystemTray"); + } + log::debug(" . executable '{}'\n" " binary: {}\n" " arguments: {}\n" |
