Skip to content

Commit

Permalink
feat: default to having selected word stacked when using clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
BrewingWeasel committed Aug 15, 2024
1 parent ddc0c50 commit 89cb15f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/reader/Reader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const definitions = computedAsync(
isComputingDefinition,
);
const selectedWordPoppedOut = ref(false);
const selectedWordPoppedOut = ref(props.inputType === "clipboard");
const separatedDefinitions = ref<string[]>([]);
watch(definitions, () => {
Expand Down

0 comments on commit 89cb15f

Please sign in to comment.