mirror of
https://github.com/electron/electron.git
synced 2026-01-25 23:38:18 -05:00
linux: Rename window's class to Atom
The window's class should be Atom instead of Atom Shell because the
launcher and the binary to launch Atom are called 'atom' and not 'atom
shell'. This is why currently all Atom's windows will not be linked to
their launcher in a dock (e.g. with Cairo-Dock).
Note that it's not advised to add white-spaces in a window's class
('Atom Shell').
This commit is contained in:
@@ -155,8 +155,8 @@ NativeWindowViews::NativeWindowViews(content::WebContents* web_contents,
|
||||
"%s/%s/%d", "Atom Shell", Browser::Get()->GetName().c_str(),
|
||||
++kWindowsCreated);
|
||||
// Set WM_CLASS.
|
||||
params.wm_class_name = "atom-shell";
|
||||
params.wm_class_class = "Atom Shell";
|
||||
params.wm_class_name = "atom";
|
||||
params.wm_class_class = "Atom";
|
||||
#endif
|
||||
|
||||
window_->Init(params);
|
||||
|
||||
Reference in New Issue
Block a user