Added context menu on game folder status bar item to open project path in file explorer.
Signed-off-by: Chris Galvan <chgalvan@amazon.com>
This commit is contained in:
@@ -71,3 +71,17 @@ public:
|
||||
private:
|
||||
void updateStatus();
|
||||
};
|
||||
|
||||
class GameInfoItem
|
||||
: public StatusBarItem
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
GameInfoItem(QString name, MainStatusBar* parent);
|
||||
|
||||
private Q_SLOTS:
|
||||
void OnShowContextMenu(const QPoint& pos);
|
||||
|
||||
private:
|
||||
QString m_projectPath;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user