Skip to content

Commit 325efe5

Browse files
committed
Fix #21 disable activate mouse action on desktop
1 parent 120377f commit 325efe5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

panel-plugin/title/windowck-title.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -298,10 +298,12 @@ void resize_title(WindowckPlugin *wckp)
298298

299299
gboolean on_title_pressed(GtkWidget *title, GdkEventButton *event, WindowckPlugin *wckp)
300300
{
301+
301302
if (!wckp->win->controlwindow)
302303
return FALSE;
303304

304-
if (event->button == 1)
305+
if (event->button == 1
306+
&& (wnck_window_get_window_type (wckp->win->controlwindow) != WNCK_WINDOW_DESKTOP))
305307
{
306308
/* double/tripple click */
307309
if (event->type == GDK_2BUTTON_PRESS || event->type == GDK_3BUTTON_PRESS)

0 commit comments

Comments
 (0)