Skip to content

Commit

Permalink
Adjusting size of release columns
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuffington committed Feb 29, 2020
1 parent d91a77e commit 702cc90
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/dialog_tagger.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ namespace mb
// Add release list columns
release_list.AddColumnAutoWidth("Artist");
release_list.AddColumnAutoWidth("Release");
release_list.AddColumn("Date/Country", MulDiv(100, DPI.cx, 96));
release_list.AddColumn("Date/Country", MulDiv(90, DPI.cx, 96));
release_list.AddColumnAutoWidth("Label/Cat#");
release_list.AddColumn("Media", MulDiv(120, DPI.cx, 96));
release_list.AddColumn("Media", MulDiv(85, DPI.cx, 96));
release_list.AddColumn("Discs", MulDiv(40, DPI.cx, 96));

// Add release list rows
Expand Down
10 changes: 5 additions & 5 deletions src/foo_musicbrainz.rc
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ STYLE DS_SETFONT | WS_MAXIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THIC
CAPTION "MusicBrainz Tagger"
FONT 8, "Segoe UI", 400, 0, 0x0
BEGIN
CONTROL "", IDC_LIST_RELEASE, "SysListView32", LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP, 14, 19, 413, 136
CONTROL "", IDC_LIST_TRACK, "SysListView32", LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP, 14, 188, 632, 199
CONTROL "", IDC_LIST_RELEASE, "SysListView32", LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP, 13, 17, 418, 136
CONTROL "", IDC_LIST_TRACK, "SysListView32", LVS_ALIGNLEFT | WS_BORDER | WS_TABSTOP, 13, 188, 634, 199

LTEXT "Artist", IDC_LABEL_ARTIST, 450, 19, 75, 8
LTEXT "Album", IDC_LABEL_ALBUM, 450, 34, 75, 8
Expand All @@ -122,15 +122,15 @@ BEGIN

COMBOBOX IDC_COMBO_TYPE, 525, 123, 120, 12, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
COMBOBOX IDC_COMBO_STATUS, 525, 138, 120, 12, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
COMBOBOX IDC_COMBO_DISC, 14, 171, 120, 12, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
COMBOBOX IDC_COMBO_DISC, 13, 171, 120, 12, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP

CONTROL "Link", IDC_LINK_URL, "SysLink", WS_TABSTOP, 14, 393, 171, 8
DEFPUSHBUTTON "Update files", IDOK, 547, 391, 50, 14
PUSHBUTTON "Close", IDCANCEL, 603, 391, 50, 14

GROUPBOX "Releases", IDC_GROUPBOX_RELEASE, 7, 5, 427, 152
GROUPBOX "Releases", IDC_GROUPBOX_RELEASE, 7, 5, 430, 152
GROUPBOX "Release info", IDC_GROUPBOX_RELEASE_INFO, 443, 5, 210, 152
GROUPBOX "Tracks", IDC_GROUPBOX_TRACK, 7, 159, 646, 229
GROUPBOX "Tracks", IDC_GROUPBOX_TRACK, 7, 159, 648, 229
END

/////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 702cc90

Please sign in to comment.