File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -276,6 +276,7 @@ private void InitializeComponent()
276
276
// tsActions
277
277
//
278
278
this . tsActions . GripStyle = System . Windows . Forms . ToolStripGripStyle . Hidden ;
279
+ this . tsActions . ImageScalingSize = ScaleHelper . Scale ( new Size ( 16 , 16 ) ) ;
279
280
this . tsActions . Items . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
280
281
this . tsbRemoveSelected ,
281
282
this . tsbRemoveFiltered ,
@@ -344,14 +345,14 @@ private void InitializeComponent()
344
345
// tstxtFilter
345
346
//
346
347
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 ) ;
348
349
this . tstxtFilter . KeyDown += new System . Windows . Forms . KeyEventHandler ( this . TstxtFilter_KeyDown ) ;
349
350
//
350
351
// tscbFilterColumns
351
352
//
352
353
this . tscbFilterColumns . DropDownStyle = System . Windows . Forms . ComboBoxStyle . DropDownList ;
353
354
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 ) ;
355
356
//
356
357
// BreakPointUI
357
358
//
Original file line number Diff line number Diff line change @@ -208,6 +208,8 @@ private List<string> LookupLibrary(string lib)
208
208
public override void UserRefreshRequest ( )
209
209
{
210
210
haxelibsCache . Clear ( ) ;
211
+ HaxeProject proj = PluginBase . CurrentProject as HaxeProject ;
212
+ if ( proj != null ) proj . UpdateVars ( false ) ;
211
213
}
212
214
213
215
/// <summary>
You can’t perform that action at this time.
0 commit comments