feat(mobile): use custom icon for configure launchbar

This commit is contained in:
Elian Doran
2025-01-04 22:00:39 +02:00
parent fa6d229ecf
commit 6966f92339
3 changed files with 5 additions and 3 deletions

View File

@@ -91,7 +91,8 @@ export default class RootCommandExecutor extends Component {
}
async showLaunchBarSubtreeCommand() {
await this.showAndHoistSubtree('_lbRoot');
const rootNote = utils.isMobile() ? "_lbMobileRoot" : "_lbRoot";
await this.showAndHoistSubtree(rootNote);
this.showLeftPaneCommand();
}