This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <rendertheme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" map-background="#dcd5d0" | |
| map-background-outside="#dcd5d0" version="5" xmlns="http://mapsforge.org/renderTheme" | |
| xsi:schemaLocation="http://mapsforge.org/renderTheme https://raw.githubusercontent.com/mapsforge/vtm/master/resources/rendertheme.xsd"> | |
| <!-- AREA STYLES --> | |
| <style-area fill="#6e91cd" id="water" mesh="true"/> | |
| <!-- LINE CASINGS --> | |
| <style-line id="unpaved_casing" stroke="#669e844c" stroke-linecap="round"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Minimal reproduction for: Tray icon never appears on Linux under Electron 43. | |
| // | |
| // Run on a StatusNotifier desktop (e.g. KDE Plasma) and watch the registration: | |
| // dbus-monitor --session "interface='org.kde.StatusNotifierWatcher'" | |
| // | |
| // Electron 41 / 42 pass the unique connection name -> ":1.173" | |
| // Electron 43 passes bus name + object path joined -> "org.freedesktop.StatusNotifierItem-<pid>-1/StatusNotifierItem/1" | |
| // | |
| // The joined form is neither accepted argument, so the registration is dropped | |
| // and no icon appears. |