-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed #3498. Show missing pixmaps in VeSTige plugin. #3501
Conversation
plugins/vestige/vestige.cpp
Outdated
@@ -259,7 +259,7 @@ void vestigeInstrument::loadFile( const QString & _file ) | |||
TextFloat * tf = TextFloat::displayMessage( | |||
tr( "Loading plugin" ), | |||
tr( "Please wait while loading VST-plugin..." ), | |||
PLUGIN_NAME::getIconPixmap( "logo", 24, 24 ), 0 ); | |||
embed::getIconPixmap( "logo", 24, 24 ), 0 ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this and other lines loading logo.png
should change, as they're about loading the plugin's logo, not a shared resource, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right. I reverted logo changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
@@ -534,7 +534,7 @@ VestigeInstrumentView::VestigeInstrumentView( Instrument * _instrument, | |||
QPushButton * note_off_all_btn = new QPushButton( tr( "Turn off all " | |||
"notes" ), this ); | |||
note_off_all_btn->setGeometry( 20, 160, 200, 24 ); | |||
note_off_all_btn->setIcon( embed::getIconPixmap( "state_stop" ) ); | |||
note_off_all_btn->setIcon( embed::getIconPixmap( "stop" ) ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This part of the fix should be in stable-1.2
No description provided.