removed context menu on tabs until fixed
mellbacon committed
May 14, 2023 at 17:53 UTC
76daf589c5f88e0c3fc179ad29e1cbee6f2222ba
2 files changed
+2
-1
src/lib/EditorTabList.svelte
-1
@@ -54,7 +54,6 @@
54
justify-content: space-between;
55
position: absolute;
56
#editor-tablist {
57
- position: relative;
57
display: flex;
58
overflow-x: overlay;
59
&::-webkit-scrollbar {
src/lib/Tab.svelte
+2
@@ -39,7 +39,9 @@
39
</div>
40
41
{#if contextmenu}
42
+<!-- TODO: Fix menu position somehow
43
<ContextMenu target={tab} items={contextmenuitems}></ContextMenu>
44
+-->
45
{/if}
46
47
<style lang="scss">