mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-11 03:21:29 +00:00
fa7dfa3710
If we want to include dive computer names in the undo system, there should be visual feedback on undo/redo. This would mean opening the divecomputer dialog, which would appear quite strange. Therefore, add a tab. This is not ideal, but consistent with the dive site tab, which probably shouldn't be there either. In the future, the UI needs some rethinking. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
6 lines
114 B
C++
6 lines
114 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "TabBase.h"
|
|
|
|
TabBase::TabBase(QWidget *parent) : QWidget(parent)
|
|
{
|
|
}
|