From 30d4f116e4c1d64c7649e1c4e682d51abb0cc23a Mon Sep 17 00:00:00 2001 From: Peter Abbasi Date: Sat, 13 Sep 2025 15:33:02 -0500 Subject: [PATCH] Corrected functions bound to the Menu items "Include Relative" and "Include Absolute" --- lib/CQT.ahk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CQT.ahk b/lib/CQT.ahk index 18501f0..4eaa032 100644 --- a/lib/CQT.ahk +++ b/lib/CQT.ahk @@ -113,8 +113,8 @@ class CodeQuickTester ["Indent Selection", (*) => this.Indent()], ["Unindent Selection", (*) => this.Unindent()], [], - ["Include &Relative", (*) => this.IncludeRel()], - ["Include &Absolute", (*) => this.IncludeAbs()], + ["Include &Relative", (*) => this.Include(true)], + ["Include &Absolute", (*) => this.Include()], [], ["Script &Options...", (*) => this.ShowScriptOpts(), ["shell32.dll", 22]], ]],