Skip to content

Commit

Permalink
GSvar: fixed missing main table headers
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-sturm committed Oct 26, 2023
1 parent 73d4fb9 commit 71eff20
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
6 changes: 3 additions & 3 deletions src/GSvar/BurdenTestWidget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<item>
<widget class="QPushButton" name="b_burden_test">
<property name="text">
<string>Perform burden test</string>
<string>perform burden test</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -492,7 +492,7 @@
</size>
</property>
<property name="text">
<string>load Samples</string>
<string>load samples</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -555,7 +555,7 @@
<item row="2" column="2" colspan="2">
<widget class="QPushButton" name="b_load_samples_controls">
<property name="text">
<string>load Samples</string>
<string>load samples</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion src/GSvar/IGVSession.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class IGVSession
void gotoInIGV(const QString& region, bool init_if_not_done);
//opens a file in IGV using "load" command (in client-server mode a secure token is also set)
void loadFileInIGV(QString filename, bool init_if_not_done);

//wait until all commands are executed
void waitForDone();

//Executed commands of the current session (since creation or last clear)
Expand Down
1 change: 1 addition & 0 deletions src/GSvar/IgvLogWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ void IgvLogWidget::switchCurrentSession(int index)
IGVSession& session = IgvSessionManager::get(index);
updateTable(session.getName(), session.getCommands());
connect(&session, SIGNAL(historyUpdated(QString, QList<IGVCommand>)), this, SLOT(updateTable(QString, QList<IGVCommand>)));
ui_.port->setText(QString::number(session.getPort()));
}

void IgvLogWidget::updateTable(QString name, QList<IGVCommand> commands)
Expand Down
22 changes: 18 additions & 4 deletions src/GSvar/IgvLogWidget.ui
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>1400</width>
<height>750</height>
<width>1200</width>
<height>600</height>
</rect>
</property>
<property name="sizePolicy">
Expand All @@ -18,8 +18,8 @@
</property>
<property name="minimumSize">
<size>
<width>1400</width>
<height>750</height>
<width>1200</width>
<height>600</height>
</size>
</property>
<property name="windowTitle">
Expand Down Expand Up @@ -69,6 +69,20 @@
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>port:</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="port">
<property name="text">
<string>xx</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
Expand Down
4 changes: 2 additions & 2 deletions src/GSvar/MainWindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -320,10 +320,10 @@
<bool>false</bool>
</property>
<attribute name="horizontalHeaderVisible">
<bool>false</bool>
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderVisible">
<bool>false</bool>
<bool>true</bool>
</attribute>
<attribute name="verticalHeaderCascadingSectionResizes">
<bool>false</bool>
Expand Down

0 comments on commit 71eff20

Please sign in to comment.