| 1889 | #endif |
| 1890 | |
| 1891 | auto AdornedRulerPanel::ScrubbingHandle::Preview( |
| 1892 | const TrackPanelMouseState &, AudacityProject *pProject) |
| 1893 | -> HitTestPreview |
| 1894 | { |
| 1895 | auto &scrubber = Scrubber::Get( *pProject ); |
| 1896 | auto message = ScrubbingMessage(scrubber, mClicked == Button::Left); |
| 1897 | |
| 1898 | mParent->SetNumGuides(1); |
| 1899 | return { |
| 1900 | message, |
| 1901 | {}, |
| 1902 | // Tooltip is same as status message, or blank |
| 1903 | mParent ? message : TranslatableString{}, |
| 1904 | }; |
| 1905 | } |
| 1906 | |
| 1907 | #ifdef QUICK_PLAY_HANDLE |
| 1908 | auto AdornedRulerPanel::QPHandle::Preview( |
nothing calls this directly
no test coverage detected