Skip to content
Snippets Groups Projects
Commit a994558c authored by stefan's avatar stefan
Browse files

Fix for sequenceviewer (ticks not visible)

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2624 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 9554dea2
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,6 @@
#include <QTableWidgetItem>
#include <QMouseEvent>
#include <iostream>
#include "sequence_table_view.hh"
#include "sequence_model.hh"
......@@ -198,14 +197,12 @@ void SequenceTableView::ResizeWidth(int index, int, int size)
this->updateStaticColumn();
this->updateStaticField();
}
static_row_->setRowHeight(index,size);
#endif
}
void SequenceTableView::ResizeHeight(int index, int, int size)
{
#if !(defined(__APPLE__) && (QT_VERSION>=0x040600))
static_column_->setRowHeight(index, size);
if(index == 0){
static_column_->setRowHeight(0,size);
static_row_->setRowHeight(0,size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment