Author: sagamusix
Date: Sat Jun 29 23:46:07 2024
New Revision: 21119
URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21119
Log:
[Mod] Comments tab: Add a few more pixels to the name column, as some longer names (when importing other formats) were cut off.
Modified:
trunk/OpenMPT/mptrack/view_com.cpp
Modified: trunk/OpenMPT/mptrack/view_com.cpp
==============================================================================
--- trunk/OpenMPT/mptrack/view_com.cpp Sat Jun 29 22:48:18 2024 (r21118)
+++ trunk/OpenMPT/mptrack/view_com.cpp Sat Jun 29 23:46:07 2024 (r21119)
@@ -58,7 +58,7 @@
static constexpr CListCtrlEx::Header SampleHeaders[SMPLIST_COLUMNS] =
{
- { _T("Sample Name"), 208, LVCFMT_LEFT },
+ { _T("Sample Name"), 212, LVCFMT_LEFT },
{ _T("Num"), 45, LVCFMT_RIGHT },
{ _T("Size"), 72, LVCFMT_RIGHT },
{ _T("Type"), 80, LVCFMT_RIGHT },
@@ -70,7 +70,7 @@
static constexpr CListCtrlEx::Header InstrumentHeaders[INSLIST_COLUMNS] =
{
- { _T("Instrument Name"), 208, LVCFMT_LEFT },
+ { _T("Instrument Name"), 212, LVCFMT_LEFT },
{ _T("Num"), 45, LVCFMT_RIGHT },
{ _T("Samples"), 64, LVCFMT_RIGHT },
{ _T("Envelopes"), 128, LVCFMT_RIGHT },
|