Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
make export and preferences menu actions disabled for now, as they're…
Browse files Browse the repository at this point in the history
… not implemented
  • Loading branch information
cpdt committed Oct 30, 2018
1 parent bbfaca9 commit e1ce4db
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions editor/widgets/GlobalActions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ void GlobalActions::setupActions() {
fileSave = makeAction("&Save", QKeySequence::Save);
fileSaveAs = makeAction("&Save As...", QKeySequence::SaveAs);
fileExport = makeAction("&Export...");
fileExport->setEnabled(false);
fileQuit = makeAction("&Quit", QKeySequence::Quit);

editUndo = makeAction("&Undo", QKeySequence::Undo);
Expand All @@ -50,6 +51,7 @@ void GlobalActions::setupActions() {
editDelete = makeAction("&Delete", QKeySequence::Delete);
editSelectAll = makeAction("&Select All", QKeySequence::SelectAll);
editPreferences = makeAction("Pr&eferences...", QKeySequence::Preferences);
editPreferences->setEnabled(false);

helpAbout = makeAction("&About", QKeySequence::HelpContents);
}

0 comments on commit e1ce4db

Please sign in to comment.