Skip to content

Commit 5f0c24f

Browse files
committed
Merge branch 'development' of https://github.com/fdorg/flashdevelop into development
2 parents 0489d9b + a761316 commit 5f0c24f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

External/Plugins/FlashDebugger/Controls/BreakPointUI.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,7 @@ private void InitializeComponent()
276276
// tsActions
277277
//
278278
this.tsActions.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
279+
this.tsActions.ImageScalingSize = ScaleHelper.Scale(new Size(16, 16));
279280
this.tsActions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
280281
this.tsbRemoveSelected,
281282
this.tsbRemoveFiltered,
@@ -344,14 +345,14 @@ private void InitializeComponent()
344345
// tstxtFilter
345346
//
346347
this.tstxtFilter.Name = "tstxtFilter";
347-
this.tstxtFilter.Size = new System.Drawing.Size(90, 23);
348+
this.tstxtFilter.Size = new System.Drawing.Size(ScaleHelper.Scale(90), 23);
348349
this.tstxtFilter.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TstxtFilter_KeyDown);
349350
//
350351
// tscbFilterColumns
351352
//
352353
this.tscbFilterColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
353354
this.tscbFilterColumns.Name = "tscbFilterColumns";
354-
this.tscbFilterColumns.Size = new System.Drawing.Size(116, 23);
355+
this.tscbFilterColumns.Size = new System.Drawing.Size(ScaleHelper.Scale(116), 23);
355356
//
356357
// BreakPointUI
357358
//

External/Plugins/HaXeContext/Context.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ private List<string> LookupLibrary(string lib)
208208
public override void UserRefreshRequest()
209209
{
210210
haxelibsCache.Clear();
211+
HaxeProject proj = PluginBase.CurrentProject as HaxeProject;
212+
if (proj != null) proj.UpdateVars(false);
211213
}
212214

213215
/// <summary>

0 commit comments

Comments
 (0)