File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ DataDigger version 25
53
53
- Change: Better naming for connecting db with a name that already is connected
54
54
- Change: Save-as Excel file now uses .xlsx format instead of .xls
55
55
- Change: Removed unused tracking of DD functions
56
+ - Change: Minimum window size much smaller now
56
57
57
58
- New : Option to change window title via myDataDigger.p (Johan Geerts)
58
59
- New : Generate dump/load: toggle for selected fields only (Dirk Vreken)
Original file line number Diff line number Diff line change @@ -5566,7 +5566,7 @@ PROCEDURE connectDatabase :
5566
5566
cProgDir = getProgramDir().
5567
5567
5568
5568
cDatabasesOld = getDatabaseList().
5569
- RUN value (cProgDir + 'wConnections.w') (INPUT 'CONNECT', INPUT pcDatabase, OUTPUT cError).
5569
+ RUN VALUE (cProgDir + 'wConnections.w') (INPUT 'CONNECT', INPUT pcDatabase, OUTPUT cError).
5570
5570
IF cError <> '' THEN
5571
5571
MESSAGE cError VIEW-AS ALERT-BOX INFORMATION BUTTONS OK.
5572
5572
@@ -9112,8 +9112,8 @@ PROCEDURE initializeVisuals :
9112
9112
btnMoveBottom:MOVE-TO-TOP().
9113
9113
9114
9114
/* Set minimum size of the window */
9115
- C-Win:MIN-WIDTH-PIXELS = 650 .
9116
- C-Win:MIN-HEIGHT-PIXELS = 460 .
9115
+ C-Win:MIN-WIDTH-PIXELS = 200 .
9116
+ C-Win:MIN-HEIGHT-PIXELS = 330 .
9117
9117
9118
9118
/* To avoid scrollbars on the frame */
9119
9119
FRAME {&FRAME-NAME}:SCROLLABLE = FALSE.
@@ -13073,7 +13073,6 @@ FUNCTION createMenuItem RETURNS HANDLE
13073
13073
13074
13074
END CASE.
13075
13075
13076
-
13077
13076
RETURN hMenuItem.
13078
13077
13079
13078
END FUNCTION. /* createMenuItem */
You can’t perform that action at this time.
0 commit comments