Under Review
Last Updated: 04 May 2018 05:00 by Eric
Imported User
Created on: 03 May 2018 05:02
Type: Feature Request
1
Cannot choose response in AutoResponder Rule Editor
AutoResponder Rule Editor only shows the URL match field, and the "Test..." option.

The combo to choose a pre-defined response and the Edit Response button don't show up (and the panel cannot be resized)!

This seems to be new in v5.0.20181.14850, as it never occurred with older versions.
2 comments
Eric
Posted on: 04 May 2018 05:00
Unfortunately, I've heard of this problem popping up in occasionally before, usually on systems in China where the user doesn't have Fiddler's default font. If you play with the Font/FontSize inside Tools > Fiddler Options > Appearance *and restart* Fiddler, is there any change?
Eric
Posted on: 04 May 2018 05:00
FWIW, you may be able to workaround this in a very hacky way in C# FiddlerScript, add the following to Handlers:

[ToolsAction("FixPanelHeight")]
public static void DoFix(){
 foreach (Control c in FiddlerApplication.UI.tabsViews.Controls) {
 if (c.Name == "pageResponder") foreach (Control d in (c.Controls[0] as UserControl).Controls)
 if (d.Name == "pnlAutoResponders") foreach (Control e in (d as Panel).Controls) {
 FiddlerApplication.Log.LogString(e.Name);
 if (e.Name == "gbResponderEditor") {
 e.Height=e.Height+120;
 e.Top=e.Top-120;
 }
 }
 }
}

Save the script, then click "FixPanelHeight" on the Tools menu. Adjust the values for the Height and Top as appropriate.