How we can add multiple top button in sub panel side by side

@ciwarkar
Change the function ‘get_buttons’ in file ‘include/SubPanel/SubPanelTiles.php’
before

...
        require_once('include/Smarty/plugins/function.sugar_action_menu.php');
        $widget_contents = smarty_function_sugar_action_menu(
            [
                'buttons' => $buttons,
                'class' => 'clickMenu fancymenu',
            ],
            $this->xTemplate
        );
...

after

...
        require_once('include/Smarty/plugins/function.sugar_action_menu.php');
        $widget_contents = smarty_function_sugar_action_menu(
            [
                'buttons' => $buttons,
/* start add */
                'flat'=>true,
/* stop add */
                'class' => 'clickMenu fancymenu',
            ],
            $this->xTemplate
        );
...

I don’t know how it do in custom directory. You should do it after each upgarde version.