From 9e26b2b2aad3d2cfc35546a8275e8401c518f08d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 11 Aug 2004 20:04:47 +0000 Subject: [PATCH] layout tweak git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28768 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wx/lib/dialogs.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/wxPython/wx/lib/dialogs.py b/wxPython/wx/lib/dialogs.py index 7770bb2315..37a0128442 100644 --- a/wxPython/wx/lib/dialogs.py +++ b/wxPython/wx/lib/dialogs.py @@ -151,13 +151,14 @@ def returnedString(ret): ## this dialog is always modal, while wxFindReplaceDialog is ## modeless and so doesn't lend itself to a function wrapper def findDialog(parent=None, searchText='', wholeWordsOnly=0, caseSensitive=0): - dlg = wx.Dialog(parent, -1, "Find", wx.DefaultPosition, (370, 120)) + dlg = wx.Dialog(parent, -1, "Find", wx.DefaultPosition, (380, 120)) wx.StaticText(dlg, -1, 'Find what:', (7, 10)) - wSearchText = wx.TextCtrl(dlg, -1, searchText, (70, 7), (195, -1)) + wSearchText = wx.TextCtrl(dlg, -1, searchText, (80, 7), (195, -1)) wSearchText.SetValue(searchText) - wx.Button(dlg, wx.ID_OK, "Find Next", (280, 5), wx.DefaultSize).SetDefault() - wx.Button(dlg, wx.ID_CANCEL, "Cancel", (280, 35), wx.DefaultSize) + wx.Button(dlg, wx.ID_OK, "Find Next", (285, 5), wx.DefaultSize).SetDefault() + wx.Button(dlg, wx.ID_CANCEL, "Cancel", (285, 35), wx.DefaultSize) + wWholeWord = wx.CheckBox(dlg, -1, 'Match whole word only', (7, 35), wx.DefaultSize, wx.NO_BORDER) -- 2.47.2