From 8296178e33733a0ccb9c3002b67cf15594bdddcd Mon Sep 17 00:00:00 2001 From: Matthieu Baerts Date: Sun, 12 Oct 2014 18:47:49 +0200 Subject: [PATCH] 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'). --- atom/browser/native_window_views.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atom/browser/native_window_views.cc b/atom/browser/native_window_views.cc index 60eb70a71c5..0429ee35249 100644 --- a/atom/browser/native_window_views.cc +++ b/atom/browser/native_window_views.cc @@ -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);