mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@150709 d073be05-634f-4543-b044-5fe20cf6d1d6
21 lines
856 B
Diff
21 lines
856 B
Diff
--- libscidavis/src/FitDialog.cpp.orig 2016-06-28 22:00:40.000000000 +0900
|
|
+++ libscidavis/src/FitDialog.cpp 2016-06-28 22:01:18.000000000 +0900
|
|
@@ -655,7 +655,7 @@
|
|
for (int i = param_table_rows; i<paramList.count(); i++)
|
|
{
|
|
QTableWidgetItem *it = new QTableWidgetItem(paramList[i]);
|
|
- it->setFlags(!Qt::ItemIsEditable);
|
|
+// it->setFlags(!Qt::ItemIsEditable);
|
|
it->setBackground(QBrush(Qt::lightGray));
|
|
it->setForeground(QBrush(Qt::darkRed));
|
|
QFont font = it->font();
|
|
@@ -679,7 +679,7 @@
|
|
for (int i = 0; i<boxParams->rowCount(); i++ )
|
|
{
|
|
QTableWidgetItem *it = new QTableWidgetItem();
|
|
- it->setFlags(!Qt::ItemIsEditable);
|
|
+// it->setFlags(!Qt::ItemIsEditable);
|
|
it->setBackground(QBrush(Qt::lightGray));
|
|
boxParams->setItem(i, 2, it);
|
|
|