Skip to content

Commit 59eec58

Browse files
key signature dialog
1 parent 6805f7e commit 59eec58

File tree

21 files changed

+519
-60
lines changed

21 files changed

+519
-60
lines changed

build/styles/fonts.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
-moz-osx-font-smoothing: grayscale;
2525
}
2626

27+
.icon-metronome4:before {
28+
content: "\e99f";
29+
}
30+
.icon-enter2:before {
31+
content: "\e99a";
32+
}
2733
.icon-radio-checked2:before {
2834
content: "\ea55";
2935
}

build/styles/fonts/smoosic.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

build/styles/fonts/smoosic.svg

Lines changed: 2 additions & 0 deletions
Loading

build/styles/fonts/smoosic.ttf

3.17 KB
Binary file not shown.

build/styles/fonts/smoosic.woff

3.17 KB
Binary file not shown.

build/styles/ribbon.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,9 @@ button.addChord .left-text .icon {
432432
width: 50px;
433433
left: 0;
434434
}
435-
435+
li.nav-item:hover {
436+
background: var(--bs-gray-200);
437+
}
436438
.expanded .ribbonButtonContainer button.graceIcon {
437439
width:60px;
438440
font-size:1.6em;

src/application/eventHandler.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -241,12 +241,6 @@ export class SuiEventHandler implements ModalEventHandler {
241241
if (dataCopy.key == '?') {
242242
SuiHelp.displayHelp();
243243
}
244-
245-
if (dataCopy.key == '/') {
246-
// set up menu DOM.
247-
this.menus.slashMenuMode(this.completeNotifier);
248-
}
249-
250244
if (dataCopy.key == 'Enter') {
251245
this.trackerModifierSelect(dataCopy);
252246
}

src/application/exports.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ import { CheckboxDropdownComponent } from '../ui/dialogs/components/checkdrop';
100100
import { TieMappingComponent } from '../ui/dialogs/components/tie';
101101
import { StaffAddRemoveComponent,
102102
StaffCheckComponent} from '../ui/dialogs/components/staffComponents';
103+
import { SuiKeySignatureDialog, SuiKeySignatureAdapter } from '../ui/dialogs/keySignature';
103104
import { TextCheckComponent } from '../ui/dialogs/components/textCheck';
104105
// menus
105106
import { SuiMenuManager} from '../ui/menus/manager';
@@ -187,7 +188,7 @@ export const Smo = {
187188
SuiPartSelectionMenu,
188189
// Dialogs
189190
SuiTempoDialog, SuiInstrumentDialog, SuiModifierDialogFactory, SuiLibraryDialog,
190-
SuiTextBracketDialog,
191+
SuiTextBracketDialog, SuiKeySignatureDialog, SuiKeySignatureAdapter,
191192
SuiScoreViewDialog, SuiGlobalLayoutDialog, SuiScoreIdentificationDialog, SuiTransposeScoreAdapter,
192193
SuiTransposeScoreDialog,
193194
SuiScoreFontDialog, SuiPageLayoutDialog, SuiMeasureDialog, SuiInsertMeasures,

src/styles/fonts.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
-moz-osx-font-smoothing: grayscale;
2525
}
2626

27+
.icon-metronome4:before {
28+
content: "\e99f";
29+
}
30+
.icon-enter2:before {
31+
content: "\e99a";
32+
}
2733
.icon-radio-checked2:before {
2834
content: "\ea55";
2935
}

src/styles/fonts/smoosic.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)