mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-31 08:37:26 +00:00
Added Exports to omnibar actions
This commit is contained in:
parent
5d91e3c884
commit
eb661fa9fc
@ -15,6 +15,7 @@ Omnibar::Omnibar(MainWindow *main, QWidget *parent) :
|
|||||||
": Flags toggle",
|
": Flags toggle",
|
||||||
": Functions toggle",
|
": Functions toggle",
|
||||||
": Imports toggle",
|
": Imports toggle",
|
||||||
|
": Exports toggle",
|
||||||
": Notepad toggle",
|
": Notepad toggle",
|
||||||
": Relocs toggle",
|
": Relocs toggle",
|
||||||
": Run Script",
|
": Run Script",
|
||||||
@ -126,6 +127,10 @@ void Omnibar::on_gotoEntry_returnPressed()
|
|||||||
{
|
{
|
||||||
this->main->on_actionImports_triggered();
|
this->main->on_actionImports_triggered();
|
||||||
}
|
}
|
||||||
|
else if (str.contains("Exports"))
|
||||||
|
{
|
||||||
|
this->main->on_actionExports_triggered();
|
||||||
|
}
|
||||||
else if (str.contains("Symbols"))
|
else if (str.contains("Symbols"))
|
||||||
{
|
{
|
||||||
this->main->on_actionSymbols_triggered();
|
this->main->on_actionSymbols_triggered();
|
||||||
|
Loading…
Reference in New Issue
Block a user