Display the branch/tag in the main context menu in these cases, where
only the last branch/tag would go into a submenu.
Signed-off-by: Markus Heidelberg <redacted>
---
src/mainimpl.cpp | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/mainimpl.cpp b/src/mainimpl.cpp
index 24b4ef1..38bbfbe 100644
--- a/src/mainimpl.cpp
+++ b/src/mainimpl.cpp
@@ -1197,7 +1197,8 @@ void MainImpl::doContexPopup(SCRef sha) {
contextMenu.addSeparator();
FOREACH_SL (it, bn) {
- if (cntMenuEntries(contextMenu) < MAX_MENU_ENTRIES)
+ if (cntMenuEntries(contextMenu) < MAX_MENU_ENTRIES
+ || (*it == bn.last() && contextSubMenu.isEmpty() && tn.empty()))
act = contextMenu.addAction(*it);
else
act = contextSubMenu.addAction(*it);@@ -1211,7 +1212,8 @@ void MainImpl::doContexPopup(SCRef sha) {
contextMenu.addSeparator();
FOREACH_SL (it, tn) {
- if (cntMenuEntries(contextMenu) < MAX_MENU_ENTRIES)
+ if (cntMenuEntries(contextMenu) < MAX_MENU_ENTRIES
+ || (*it == tn.last() && contextSubMenu.isEmpty()))
act = contextMenu.addAction(*it);
else
act = contextSubMenu.addAction(*it);--
1.6.3.2.213.g30b07