ソフトウェア利用状況のデータ収集を許可
= {
- CONTINUOUSLY: {
- label: "連続",
- desc: "現在の再生位置を真ん中に表示します。",
- },
- PAGE: {
- label: "ページめくり",
- desc: "現在の再生位置が表示範囲外にある場合にスクロールします。",
- },
- OFF: {
- label: "オフ",
- desc: "自動でスクロールしません。",
- },
-};
const experimentalSetting = computed(() => store.state.experimentalSetting);
// 非表示にしたヒントの再表示
@@ -1108,34 +1083,8 @@ const [enableMultiEngine, setEnableMultiEngine] =
const [showTextLineNumber, changeShowTextLineNumber] =
useRootMiscSetting("showTextLineNumber");
-// エディタの+ボタン表示設定
-const showAddAudioItemButton = computed(
- () => store.state.showAddAudioItemButton
-);
-const changeShowAddAudioItemButton = async (
- showAddAudioItemButton: boolean
-) => {
- store.dispatch("SET_ROOT_MISC_SETTING", {
- key: "showAddAudioItemButton",
- value: showAddAudioItemButton,
- });
-
- // 設定をオフにする場合はヒントを表示
- if (!showAddAudioItemButton) {
- const result = await store.dispatch("SHOW_CONFIRM_DIALOG", {
- title: "エディタの+ボタンを非表示にする",
- message: "テキスト欄は Shift + Enter で追加できます",
- actionName: "非表示",
- });
- if (result === "CANCEL") {
- // キャンセルしたら設定を元に戻す
- store.dispatch("SET_ROOT_MISC_SETTING", {
- key: "showAddAudioItemButton",
- value: true,
- });
- }
- }
-};
+const [showAddAudioItemButton, changeShowAddAudioItemButton] =
+ useRootMiscSetting("showAddAudioItemButton");
const [enableMemoNotation, changeEnableMemoNotation] =
useRootMiscSetting("enableMemoNotation");
@@ -1351,10 +1300,6 @@ const renderEngineNameLabel = (engineId: EngineId) => {
@use '@/styles/visually-hidden' as visually-hidden;
@use "@/styles/colors" as colors;
-.visually-hidden {
- @include visually-hidden.visually-hidden;
-}
-
.text-h5 {
margin: 0;
}
@@ -1381,32 +1326,12 @@ const renderEngineNameLabel = (engineId: EngineId) => {
background: colors.$background;
}
-.scroll-mode-toggle {
- background: colors.$background;
- border-radius: 3px;
-}
-
-.scroll-mode-button {
- background: colors.$background;
- color: colors.$display;
- transition: 0.5s;
-}
-
-.scroll-mode-button-selected {
- background: colors.$primary;
- color: colors.$display-on-primary;
-}
-
.text-ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
-.scroll-mode-button:hover {
- background: rgba(colors.$primary-rgb, 0.2);
-}
-
.setting-dialog .q-layout-container :deep(.absolute-full) {
right: 0 !important;
.scroll {