Skip to content

Commit

Permalink
key signature dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronDavidNewman committed Sep 1, 2024
1 parent 6805f7e commit 59eec58
Show file tree
Hide file tree
Showing 21 changed files with 519 additions and 60 deletions.
6 changes: 6 additions & 0 deletions build/styles/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
-moz-osx-font-smoothing: grayscale;
}

.icon-metronome4:before {
content: "\e99f";
}
.icon-enter2:before {
content: "\e99a";
}
.icon-radio-checked2:before {
content: "\ea55";
}
Expand Down
2 changes: 1 addition & 1 deletion build/styles/fonts/smoosic.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions build/styles/fonts/smoosic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified build/styles/fonts/smoosic.ttf
Binary file not shown.
Binary file modified build/styles/fonts/smoosic.woff
Binary file not shown.
4 changes: 3 additions & 1 deletion build/styles/ribbon.css
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,9 @@ button.addChord .left-text .icon {
width: 50px;
left: 0;
}

li.nav-item:hover {
background: var(--bs-gray-200);
}
.expanded .ribbonButtonContainer button.graceIcon {
width:60px;
font-size:1.6em;
Expand Down
6 changes: 0 additions & 6 deletions src/application/eventHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,12 +241,6 @@ export class SuiEventHandler implements ModalEventHandler {
if (dataCopy.key == '?') {
SuiHelp.displayHelp();
}

if (dataCopy.key == '/') {
// set up menu DOM.
this.menus.slashMenuMode(this.completeNotifier);
}

if (dataCopy.key == 'Enter') {
this.trackerModifierSelect(dataCopy);
}
Expand Down
3 changes: 2 additions & 1 deletion src/application/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ import { CheckboxDropdownComponent } from '../ui/dialogs/components/checkdrop';
import { TieMappingComponent } from '../ui/dialogs/components/tie';
import { StaffAddRemoveComponent,
StaffCheckComponent} from '../ui/dialogs/components/staffComponents';
import { SuiKeySignatureDialog, SuiKeySignatureAdapter } from '../ui/dialogs/keySignature';
import { TextCheckComponent } from '../ui/dialogs/components/textCheck';
// menus
import { SuiMenuManager} from '../ui/menus/manager';
Expand Down Expand Up @@ -187,7 +188,7 @@ export const Smo = {
SuiPartSelectionMenu,
// Dialogs
SuiTempoDialog, SuiInstrumentDialog, SuiModifierDialogFactory, SuiLibraryDialog,
SuiTextBracketDialog,
SuiTextBracketDialog, SuiKeySignatureDialog, SuiKeySignatureAdapter,
SuiScoreViewDialog, SuiGlobalLayoutDialog, SuiScoreIdentificationDialog, SuiTransposeScoreAdapter,
SuiTransposeScoreDialog,
SuiScoreFontDialog, SuiPageLayoutDialog, SuiMeasureDialog, SuiInsertMeasures,
Expand Down
6 changes: 6 additions & 0 deletions src/styles/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
-moz-osx-font-smoothing: grayscale;
}

.icon-metronome4:before {
content: "\e99f";
}
.icon-enter2:before {
content: "\e99a";
}
.icon-radio-checked2:before {
content: "\ea55";
}
Expand Down
2 changes: 1 addition & 1 deletion src/styles/fonts/smoosic.json

Large diffs are not rendered by default.

Loading

0 comments on commit 59eec58

Please sign in to comment.