diff options
author | dgp <dgp@noemail.net> | 2011-06-07 21:27:46 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2011-06-07 21:27:46 (GMT) |
commit | 0c6440ba9574498f463410f8ae37fed718a20495 (patch) | |
tree | 1b53a1bc3a6ccc6f3743a9bbe92a73dcd8ef2d8f | |
parent | 578a822f555453c7bfc7085d6eae1810495f17d5 (diff) | |
download | tk-0c6440ba9574498f463410f8ae37fed718a20495.zip tk-0c6440ba9574498f463410f8ae37fed718a20495.tar.gz tk-0c6440ba9574498f463410f8ae37fed718a20495.tar.bz2 |
Backport [Bug 2482771] fix.
FossilOrigin-Name: 71ccc3ca47da575265d55538afdbcfc2cb443bce
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | win/tkWinDialog.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2011-06-07 Don Porter <dgp@users.sourceforge.net> + * win/tkWinDialog.c: Backport [Bug 2482771] fix. + * generic/tkEntry.c: Restore support for values "08" and "09" in a [spinbox] configured to use -from and -to values. [Bug 2358545]. diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index b4853bb..ce23703 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -2400,7 +2400,7 @@ Tk_MessageBoxObjCmd( flags = buttonFlagMap[defaultBtnIdx]; } - flags |= icon | type | MB_SYSTEMMODAL; + flags |= icon | type | MB_TASKMODAL | MB_SETFOREGROUND; tmpObj = messageObj ? Tcl_DuplicateObj(messageObj) : Tcl_NewUnicodeObj(NULL, 0); |