Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upFile History Window #999
File History Window #999
Conversation
|
holy crap this is looking awesome. |
|
|
|
|
I'm assuming that it has something to do with the I took an attempt at re-writing the private void DoHeaderGUI() {
GUILayout.BeginHorizontal(Styles.HeaderBoxStyle);
{
var iconWidth = 32;
var iconHeight = 32;
GUILayout.Label(selectedIcon, GUILayout.Height(iconWidth), GUILayout.Width(iconHeight));
GUILayout.Space(16);
GUILayout.BeginVertical();
{
GUILayout.Label(selectedObjectAssetPath, Styles.FileHistoryLogTitleStyle);
GUILayout.BeginHorizontal();
{
GUILayout.FlexibleSpace();
if (GUILayout.Button("Show in Project"))
{
EditorGUIUtility.PingObject(selectedObject);
}
}
GUILayout.EndHorizontal();
}
GUILayout.EndVertical();
}
GUILayout.EndHorizontal();
}Would anyone be able to push a tweak for this? If not, I can take this on, but I'll need some time to get my environment set up again. |
Co-authored-by: Don Okuda <don.okuda@gmail.com>
|
@donokuda as always you work miracles. I also made sure you get credit for that code. |
|
Looks great, just a couple of comments! |
|
@sambonfire let me know if there is anything you'd like to change about this before it goes in. |
|
This functionality looks good to me @StanleyGoldman |





StanleyGoldman commentedJan 17, 2019
Building upon work started in #948 by @sambonfire