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:
Matthieu Baerts 2014-10-12 18:47:49 +02:00
parent ddf4f14dba
commit 8296178e33

View file

@ -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);