[rkward] /: Disable 'Import Data'-dialog for now.
Thomas Friedrichsmeier
thomas.friedrichsmeier at ruhr-uni-bochum.de
Mon Jun 8 11:58:52 UTC 2015
Git commit 526e83a0bb96bce514145647f59284cce3dac923 by Thomas Friedrichsmeier.
Committed on 08/06/2015 at 11:58.
Pushed by tfry into branch 'master'.
Disable 'Import Data'-dialog for now.
M +1 -0 ChangeLog
M +3 -0 rkward/rkward.cpp
http://commits.kde.org/rkward/526e83a0bb96bce514145647f59284cce3dac923
diff --git a/ChangeLog b/ChangeLog
index 5534840..9fb2e39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
+- Disabled the "Import Data"-dialog, as it was considered too confusing. The individual importers are still available from the menu, separately.
- For multi-item varslots and valueslots, use separate buttons for adding / removing items
- Don't show (useless) index number in mutli-value varslots and valueslots
- Make the option to disable / enable editing more visible (in the data editor's toolbar)
diff --git a/rkward/rkward.cpp b/rkward/rkward.cpp
index a4dc83b..a8816a1 100644
--- a/rkward/rkward.cpp
+++ b/rkward/rkward.cpp
@@ -435,6 +435,8 @@ void RKWardMainWindow::initActions() {
fileOpenRecent = static_cast<KRecentFilesAction*> (actionCollection ()->addAction (KStandardAction::OpenRecent, "file_open_recenty", this, SLOT(slotOpenCommandEditor(KUrl))));
fileOpenRecent->setText (i18n ("Open Recent R Script File"));
+#if 0
+ // TODO: Fix import dialog and re-enable it: https://mail.kde.org/pipermail/rkward-devel/2015-June/004156.html
#ifdef Q_WS_WIN
// TODO: find the cause and fix it! http://sourceforge.net/tracker/?func=detail&aid=2848341&group_id=50231&atid=459007
# ifdef __GNUC__
@@ -445,6 +447,7 @@ void RKWardMainWindow::initActions() {
action->setText (i18n ("Import Data"));
action->setStatusTip (i18n ("Import data from a variety of file formats"));
#endif
+#endif
fileOpenWorkspace = actionCollection ()->addAction (KStandardAction::Open, "file_openx", this, SLOT(slotFileOpenWorkspace()));
fileOpenWorkspace->setText (i18n ("Open Workspace..."));
More information about the rkward-tracker
mailing list