diff --git a/src/gui/Src/Gui/MainWindow.cpp b/src/gui/Src/Gui/MainWindow.cpp
index 92dcba81..4ebde2a0 100644
--- a/src/gui/Src/Gui/MainWindow.cpp
+++ b/src/gui/Src/Gui/MainWindow.cpp
@@ -1930,6 +1930,7 @@ void MainWindow::updateFavouriteTools()
delete actionManageFavourites;
mFavouriteToolbar->clear();
actionManageFavourites = new QAction(DIcon("star.png"), tr("&Manage Favourite Tools..."), this);
+ actionManageFavourites->setStatusTip(tr("Open the Favourites dialog to manage the favourites menu"));
for(unsigned int i = 1; BridgeSettingGet("Favourite", QString("Tool%1").arg(i).toUtf8().constData(), buffer); i++)
{
QString toolPath = QString(buffer);
diff --git a/src/gui/Src/Gui/MainWindow.ui b/src/gui/Src/Gui/MainWindow.ui
index 0c61f1bd..f7e9fc6b 100644
--- a/src/gui/Src/Gui/MainWindow.ui
+++ b/src/gui/Src/Gui/MainWindow.ui
@@ -342,7 +342,7 @@
&Run
- Run the debuggee.
+ Run the debuggee or restart debugging.
@@ -389,6 +389,9 @@
Step &into
+
+ Execute a single instruction
+
@@ -398,6 +401,9 @@
Step &over
+
+ Execute a single instruction without entering the CALL instruction
+
@@ -407,6 +413,9 @@
Co&mmand
+
+ Focus on the command bar
+
@@ -416,6 +425,9 @@
E&xecute till return
+
+ Trace over until the RET instruction would be executed and stack pointer is less than or equal to current value.
+
@@ -449,6 +461,9 @@
&About
+
+ Display information about x64dbg
+
@@ -479,6 +494,9 @@
Step into (pass exceptions)
+
+ Execute a single instruction, pass exceptions to the debuggee.
+
@@ -626,6 +644,9 @@
Find Strings
+
+ Find possible strings in the current module. Equivalent command "strref"
+
@@ -650,6 +671,9 @@
Find Intermodular Calls
+
+ Find intermodular calls in the current module. Equivalent command "modcallfind"
+
@@ -674,6 +698,9 @@
Comments
+
+ Show a list of comments. Equivalent command "commentlist"
+
@@ -683,6 +710,9 @@
Labels
+
+ Show a list of labels. Equivalent command "labellist"
+
@@ -692,6 +722,9 @@
Bookmarks
+
+ Show a list of bookmarks. Equivalent command "bookmarklist"
+
@@ -701,6 +734,9 @@
Functions
+
+ Show a list of functions. Equivalent command "functionlist"
+
@@ -710,6 +746,9 @@
Check for &Updates
+
+ Connect to Github to check for updates
+
@@ -734,6 +773,9 @@
Shortcuts
+
+ Open the Shortcuts dialog to customize keyboard shortcuts.
+
@@ -746,6 +788,9 @@
Donate
+
+ Open http://donate.x64dbg.com
+
@@ -827,6 +872,9 @@
Topmost Window
+
+ Make x64dbg topmost
+
@@ -839,6 +887,9 @@
Report Bug
+
+ Open http://report.x64dbg.com
+
@@ -863,6 +914,9 @@
&Manual
+
+ Open the CHM manual or online documentation at http://help.x64dbg.com
+
@@ -875,6 +929,9 @@
FAQ
+
+ Open http://faq.x64dbg.com
+
@@ -950,6 +1007,9 @@
Trace over...
+
+ Step over until a condition becomes true, and optionally log and execute commands when tracing. Equivalent command "tocnd"
+
@@ -962,6 +1022,9 @@
Trace into...
+
+ Step into until a condition becomes true, and optionally log and execute commands when tracing. Equivalent command "ticnd"
+
@@ -971,6 +1034,9 @@
Bit
+
+ Enable trace record with 1 bit per byte to record whether the code has been executed.
+
@@ -980,6 +1046,9 @@
Byte
+
+ Enable trace record with 1 byte per byte to record how many times the code has been executed.
+
@@ -989,6 +1058,9 @@
Word
+
+ Enable trace record with 2 bytes per byte to record how many times the code has been executed.
+
@@ -998,6 +1070,9 @@
Trace into beyond trace record
+
+ Trace into until the current instruction was not executed before. Equivalent command "tibt"
+
@@ -1007,6 +1082,9 @@
Trace over beyond trace record
+
+ Trace over until the current instruction was not executed before. Equivalent command "tobt"
+
@@ -1016,6 +1094,9 @@
Trace into into trace record
+
+ Trace into until the current instruction was executed before. Equivalent command "tiit"
+
@@ -1025,6 +1106,9 @@
Trace over into trace record
+
+ Trace over until the current instruction was executed before. Equivalent command "toit"
+
@@ -1034,6 +1118,9 @@
None
+
+ Disable trace record
+
@@ -1043,6 +1130,9 @@
Run to &user code
+
+ Trace over until user code would be executed.
+
@@ -1088,6 +1178,9 @@
Step over (source)
+
+ Execute a single line of source code without entering the subroutine. Equivalent to "TraceOverConditional src.line(cip) && !src.disp(cip)"
+
@@ -1097,6 +1190,9 @@
Step into (source)
+
+ Execute a single source code line. Equivalent to "TraceIntoConditional src.line(cip) && !src.disp(cip)"
+
@@ -1118,6 +1214,9 @@
Step into (swallow exception)
+
+
+
@@ -1148,6 +1247,9 @@
Blog
+
+ Open http://blog.x64dbg.com
+
@@ -1157,6 +1259,9 @@
Animate into
+
+ Execute the step into command at a fixed pace
+
@@ -1166,6 +1271,9 @@
Animate over
+
+ Execute the step over command at a fixed pace
+
@@ -1175,6 +1283,9 @@
Animate command...
+
+ Execute a command at a fixed pace
+
@@ -1196,6 +1307,9 @@
Import settings...
+
+ Import settings from an external file
+
@@ -1205,6 +1319,9 @@
Customize menus
+
+ Open the Custimuze menus dialog to hide infrequently used menu items into the "more commands" submenu.
+
@@ -1235,6 +1352,9 @@
Previous Tab
+
+ Show the tab on the left.
+
@@ -1244,6 +1364,9 @@
Next Tab
+
+ Show the tab on the right.
+
@@ -1253,6 +1376,9 @@
Previous View
+
+ Show the tab history popup window and select more recently used tab.
+
@@ -1262,6 +1388,9 @@
Next View
+
+ Show the tab history popup window and select previously viewed tab.
+
@@ -1271,6 +1400,9 @@
Hide Tab
+
+ Hide the current tab. The hidden tab can be reopened from the View menu.
+
@@ -1280,6 +1412,9 @@
&Variables
+
+ Show a list of x64dbg variables. Equivalent command "varlist"
+
@@ -1301,6 +1436,9 @@
Plugins
+
+ Open http://plugins.x64dbg.com
+