viewer: allow switching open sequences

This commit is contained in:
itsmattkc
2020-03-21 22:18:17 +11:00
parent 3c3543a2a9
commit 51f02ea01b
19 changed files with 207 additions and 70 deletions
@@ -0,0 +1,18 @@
#include "sequenceviewer.h"
SequenceViewerPanel::SequenceViewerPanel(QWidget *parent) :
ViewerPanel(parent)
{
// FIXME: This won't work if there's ever more than one of this panel
setObjectName("SequenceViewerPanel");
// Set strings
Retranslate();
}
void SequenceViewerPanel::Retranslate()
{
ViewerPanel::Retranslate();
SetTitle(tr("Sequence Viewer"));
}