mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-13 05:31:44 +00:00
GUI: mux: use two columns for "Color information" in tab-widget-below-tracks mode
Implements #3401.
This commit is contained in:
parent
20ddc315e6
commit
ba94a862c8
8
NEWS.md
8
NEWS.md
@ -1,5 +1,13 @@
|
|||||||
# Version ?
|
# Version ?
|
||||||
|
|
||||||
|
## New features and enhancements
|
||||||
|
|
||||||
|
* MKVToolNix GUI: multiplexer: when the track properties are
|
||||||
|
configured to be displayed in a tab widget below the files & tracks
|
||||||
|
in the "Input" tab, the "Color information" tab will be laid out in
|
||||||
|
two columns. This reduces the minimum height the whole tab widget
|
||||||
|
requires. Implements #3401.
|
||||||
|
|
||||||
## Bug fixes
|
## Bug fixes
|
||||||
|
|
||||||
* mkvmerge: Ogg/OGM reader: mkvmerge will now correctly skip tracks of
|
* mkvmerge: Ogg/OGM reader: mkvmerge will now correctly skip tracks of
|
||||||
|
@ -206,7 +206,8 @@ Tab::setupHorizontalScrollAreaInputLayout() {
|
|||||||
|
|
||||||
p.ui->propertiesStack->setCurrentIndex(0);
|
p.ui->propertiesStack->setCurrentIndex(0);
|
||||||
|
|
||||||
Util::autoGroupBoxGridLayout(*p.ui->generalOptionsBox, 1);
|
Util::autoGroupBoxGridLayout(*p.ui->generalOptionsBox, 1);
|
||||||
|
Util::autoGroupBoxGridLayout(*p.ui->colorInformationBox, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -241,7 +242,8 @@ Tab::setupHorizontalTwoColumnsInputLayout() {
|
|||||||
moveTo(p.ui->propertiesColumn2, idx++, p.ui->colorMasteringMetaInformationBox);
|
moveTo(p.ui->propertiesColumn2, idx++, p.ui->colorMasteringMetaInformationBox);
|
||||||
moveTo(p.ui->propertiesColumn2, idx++, p.ui->videoProjectionInformationBox);
|
moveTo(p.ui->propertiesColumn2, idx++, p.ui->videoProjectionInformationBox);
|
||||||
|
|
||||||
Util::autoGroupBoxGridLayout(*p.ui->generalOptionsBox, 1);
|
Util::autoGroupBoxGridLayout(*p.ui->generalOptionsBox, 1);
|
||||||
|
Util::autoGroupBoxGridLayout(*p.ui->colorInformationBox, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -275,7 +277,8 @@ Tab::setupVerticalTabWidgetInputLayout() {
|
|||||||
p.ui->propertiesColumn1->updateGeometry();
|
p.ui->propertiesColumn1->updateGeometry();
|
||||||
p.ui->propertiesColumn2->updateGeometry();
|
p.ui->propertiesColumn2->updateGeometry();
|
||||||
|
|
||||||
Util::autoGroupBoxGridLayout(*p.ui->generalOptionsBox, 2);
|
Util::autoGroupBoxGridLayout(*p.ui->generalOptionsBox, 2);
|
||||||
|
Util::autoGroupBoxGridLayout(*p.ui->colorInformationBox, 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user