mirror of
https://github.com/LMMS/lmms.git
synced 2026-04-11 17:48:15 -04:00
Use system cursors instead of embedded raster images where possible (#7838)
Given these changes, the knife tool now uses `Qt::SplitHCursor`, but `Qt::IBeamCursor` is also a a viable option. I am noting this should substantial concern arise over the appearance of `Qt::SplitHCursor` due to cursor themes, such as the default one applied to applications running under WSL.
This commit is contained in:
@@ -51,7 +51,7 @@ AudioFileProcessorView::AudioFileProcessorView(Instrument* instrument,
|
||||
InstrumentViewFixedSize(instrument, parent)
|
||||
{
|
||||
m_openAudioFileButton = new PixmapButton(this);
|
||||
m_openAudioFileButton->setCursor(QCursor(Qt::PointingHandCursor));
|
||||
m_openAudioFileButton->setCursor(Qt::PointingHandCursor);
|
||||
m_openAudioFileButton->move(227, 72);
|
||||
m_openAudioFileButton->setActiveGraphic(PLUGIN_NAME::getIconPixmap(
|
||||
"select_file"));
|
||||
|
||||
Reference in New Issue
Block a user