Skip to content

Commit 0719e2b

Browse files
committed
Fix path bar width
1 parent 77ce667 commit 0719e2b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

WIMExplorer/Form1.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,9 @@ private async void toolStripButton2_Click(object sender, EventArgs e)
910910
private void checkBox1_CheckedChanged(object sender, EventArgs e)
911911
{
912912
detailsPane.Visible = checkBox1.Checked;
913+
int left = 0;
914+
left = (toolStripDropDownButton1.Width + toolStripDropDownButton2.Width + toolStripButton1.Width + toolStripSeparator1.Width + toolStripLabel1.Width);
915+
textBoxPath.Width = toolStrip1.Width - (left + toolStripButton2.Width) - 10;
913916
}
914917
}
915918
}

0 commit comments

Comments
 (0)