Skip to content

Commit

Permalink
修正迷你模式播放列表无法双击播放的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongyang219 committed Aug 30, 2024
1 parent a2b155f commit 6b7ddf6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MusicPlayer2/MiniModeDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,10 @@ void CMiniModeDlg::OnLButtonDblClk(UINT nFlags, CPoint point)
//if(!m_ui.PointInControlArea(point))
// OnOK();

CPlayerUIBase* cur_ui{ GetCurUi() };
if (cur_ui != nullptr)
cur_ui->DoubleClick(point);

CDialogEx::OnLButtonDblClk(nFlags, point);
}

Expand Down

0 comments on commit 6b7ddf6

Please sign in to comment.