Limitations + menu separators
This commit is contained in:
parent
a05127b7aa
commit
787b90bff7
2 changed files with 10 additions and 1 deletions
|
@ -12,6 +12,13 @@ Merge https://github.com/Vendicated/Vencord/pull/3153 into your Vencord
|
|||
|
||||
Add this repository as a userplugin
|
||||
|
||||
# Limitations (for now)
|
||||
|
||||
- No way to delete a deck
|
||||
- The sidebar in the deck popout hasn't been implemented
|
||||
- Resizing channels isn't implemented fully
|
||||
- Laggy?
|
||||
|
||||
# Credits
|
||||
|
||||
https://github.com/Masterjoona/vc-sidebarchat for a significant portion of code
|
||||
|
|
|
@ -22,6 +22,7 @@ export const UserSettingsContextMenu: NavContextMenuPatchCallback = (children, p
|
|||
}}
|
||||
/>)}
|
||||
</Menu.MenuGroup>
|
||||
<Menu.MenuSeparator />
|
||||
<Menu.MenuItem
|
||||
id="create-deck"
|
||||
label="Create deck"
|
||||
|
@ -72,6 +73,7 @@ function MakeChannelContextMenu(name: "user" | "channel"): NavContextMenuPatchCa
|
|||
}}
|
||||
/>)}
|
||||
</Menu.MenuGroup>
|
||||
<Menu.MenuSeparator />
|
||||
<Menu.MenuItem
|
||||
id="create-deck"
|
||||
label="Create deck and add channel"
|
||||
|
@ -80,7 +82,7 @@ function MakeChannelContextMenu(name: "user" | "channel"): NavContextMenuPatchCa
|
|||
}}
|
||||
>
|
||||
</Menu.MenuItem>
|
||||
</Menu.MenuItem>
|
||||
</Menu.MenuItem >
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue