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:
parent
ddf4f14dba
commit
8296178e33
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue