måndag 19 maj 2025 kl. 17:50:10 UTC+2 skrev [email protected]: Unsure if I'm missing something, but when I am checking the commit window, I cant seem to find the context window which allows for this.
[image: Screenshot 2025-05-19 224513.png] However, I do see it in `Check for modification', not in either Commit or Show Logs (which doesn't even allow for a context window to appear on right click). [image: Screenshot 2025-05-19 224741.png] I'm currently on TortoiseSVN 1.14.9, Build 29743. Is it on a different build? or am I missing a setting? Sorry if this was something simple and obvious that I missed out, but I really appreciate the help ^^''. Regards, Kai On Monday, May 19, 2025 at 10:21:52 PM UTC+8 Stefan wrote: On Monday, May 19, 2025 at 6:55:36 AM UTC+2 [email protected] wrote: Thank you for the suggestion Stefan! It sounds like a really simple and straightforward plan. Is that suggestion something I would have to implement or does it already exist in tsvn? If it is something I would have to implement, where would be best to get started with? you can already do this in TSVN. I went treasure-hunting in the source code and it seems to be this line in CommitDlg.cpp that initialize the file list control: 682: BOOL success = m_listCtrl.GetStatus(m_pathList); It could be changed to: 682 : BOOL success = m_listCtrl.GetStatus(m_pathList, false, false, true); This would ALWAYS show the property columns, but I believe there may be a performance issue doing this. Compared to the repo browser dialog, there is a checkbox to show Properties (if you uncheck this, the property columns will disappear from the context menu). Maybe it would be better to add this checkbox to the commit dialog as well? Would you consider contributing the code required? A workaround would be to edit the Windows registry under HKCU\Software\TortoiseSVN\StatusColumns and add the desired column[s] (separated by space) to the CommitDlgShownUserProps value. Kind regards, Daniel -- You received this message because you are subscribed to the Google Groups "TortoiseSVN-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/tortoisesvn-dev/5bff57fe-4fe3-4f39-bf93-e10232c32d77n%40googlegroups.com.

