Commit 0e835238 authored by nixdrin's avatar nixdrin Committed by Alyssa Ross
Browse files

drawio: fix startupWMClass

drawio seems to report "draw.io" as WM_CLASS, not "drawio". Having this
wrong means it does not get associated properly to the desktop entry and
is not grouped properly on the task bar.

(Checked using "xprop WM_CLASS" then clicking the drawio window.)
parent 16ea502f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
      comment = "draw.io desktop";
      mimeTypes = [ "application/vnd.jgraph.mxfile" "application/vnd.visio" ];
      categories = [ "Graphics" ];
      startupWMClass = "drawio";
      startupWMClass = "draw.io";
    })
  ];