merge fixes
This commit is contained in:
parent
b3b52f74e0
commit
7c7c0ad930
6 changed files with 8 additions and 2 deletions
|
@ -10,6 +10,8 @@
|
|||
|
||||
- make level meter LED black when off, by fleutot (#318)
|
||||
|
||||
- added ukulele/bass ukulele instrument icons created by dos1 (#319)
|
||||
|
||||
- added check in acknowledge message, coded by atsampson (#302)
|
||||
|
||||
- bug fix: on MacOS declare an activity to ensure the process doesn't get throttled
|
||||
|
|
|
@ -714,6 +714,10 @@ DISTFILES += ChangeLog \
|
|||
src/res/instruments/congas.png \
|
||||
src/res/instruments/bongo.svg \
|
||||
src/res/instruments/bongo.png \
|
||||
src/res/instruments/ukulele.svg \
|
||||
src/res/instruments/ukulele.png \
|
||||
src/res/instruments/bassukulele.svg \
|
||||
src/res/instruments/bassukulele.png \
|
||||
src/res/instruments/vocalbass.png \
|
||||
src/res/instruments/vocaltenor.png \
|
||||
src/res/instruments/vocalalto.png \
|
||||
|
|
Before Width: | Height: | Size: 981 B After Width: | Height: | Size: 981 B |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
@ -81,7 +81,7 @@
|
|||
<file>res/instruments/banjo.png</file>
|
||||
<file>res/instruments/mandolin.png</file>
|
||||
<file>res/instruments/ukulele.png</file>
|
||||
<file>res/instruments/bassuke.png</file>
|
||||
<file>res/instruments/bassukulele.png</file>
|
||||
</qresource>
|
||||
<qresource prefix="/png/main">
|
||||
<file>res/fronticon.png</file>
|
||||
|
|
|
@ -1021,7 +1021,7 @@ CVector<CInstPictures::CInstPictProps>& CInstPictures::GetTable()
|
|||
vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Banjo" ), ":/png/instr/res/instruments/banjo.png", IC_PLUCKING_INSTRUMENT ) );
|
||||
vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Mandolin" ), ":/png/instr/res/instruments/mandolin.png", IC_PLUCKING_INSTRUMENT ) );
|
||||
vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Ukulele" ), ":/png/instr/res/instruments/ukulele.png", IC_PLUCKING_INSTRUMENT ) );
|
||||
vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Bass Ukulele" ), ":/png/instr/res/instruments/bassuke.png", IC_PLUCKING_INSTRUMENT ) );
|
||||
vecDataBase.Add ( CInstPictProps ( QCoreApplication::translate ( "CMusProfDlg", "Bass Ukulele" ), ":/png/instr/res/instruments/bassukulele.png", IC_PLUCKING_INSTRUMENT ) );
|
||||
|
||||
// now the table is initialized
|
||||
TableIsInitialized = true;
|
||||
|
|
Loading…
Reference in a new issue