Skip to content

Commit

Permalink
Update wincmd.c
Browse files Browse the repository at this point in the history
Fixing issue

lxde#77
  • Loading branch information
kurokawachan authored Aug 23, 2024
1 parent 1f0e1aa commit 7e45872
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/wincmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ static gboolean wincmd_button_clicked(GtkWidget * widget, GdkEventButton * event
{
WinCmdPlugin * wc = lxpanel_plugin_get_data(widget);

if ( GDK_BUTTON_PRESS != event->type ){
return FALSE;
}

/* Left-click to iconify. */
if (event->button == 1)
{
Expand Down

0 comments on commit 7e45872

Please sign in to comment.