Steven Kirk
ca7584ce3f
Added failing test for #1218
9 years ago
danwalmsley
f796b33df4
Merge pull request #1231 from AvaloniaUI/override-redirect-for-popups
[GTK3] Special resize handling for popups
9 years ago
Nikita Tsukanov
4e98c34940
[GTK3] Skip resize part of configure event if OverrideRedirect=true
9 years ago
Nikita Tsukanov
17337882b3
[GTK3] Special resize handling for popups
9 years ago
Nikita Tsukanov
0c658cf7d8
Merge pull request #1228 from AvaloniaUI/UpdatePortableXaml
Update Portable.Xaml
9 years ago
Jeremy Koritzinsky
7f455e945d
Update Portable.Xaml
9 years ago
Jeremy Koritzinsky
f51271e5bd
Merge pull request #1225 from brandonhood/patch-1
Update Control.cs
9 years ago
Jeremy Koritzinsky
81fa0bb09d
Merge pull request #1223 from AvaloniaUI/fixes/1221-getvisualsat-returns-non-children
Supply root to IRenderer.HitTest.
9 years ago
brandonhood
ac9a8d74b8
Update Control.cs
Updated the setter for Name to use IsNullOrWhiteSpace to both protect against null and do the emptiness check
9 years ago
danwalmsley
e66d0dbac0
Merge branch 'master' into fixes/1221-getvisualsat-returns-non-children
9 years ago
Nikita Tsukanov
a3eb9e0da4
Docs are now living at https://github.com/AvaloniaUI/avaloniaui.net
So long and thanks for the fish
9 years ago
Nikita Tsukanov
35e1ddc104
Merge pull request #1193 from Worldbeater/patch-1
Update readme.md
9 years ago
danwalmsley
cb6775eebc
Merge branch 'master' into fixes/1221-getvisualsat-returns-non-children
9 years ago
Steven Kirk
880cf657ec
Accept root in IRenderer.HitTest.
Fixes #1221 .
9 years ago
danwalmsley
57400f9a91
Merge pull request #1214 from jkoritzinsky/FixBindingStackOverflow
Fix binding stack overflow for negation
9 years ago
Steven Kirk
e3d34f2eb8
Added a failing test for #1221
9 years ago
danwalmsley
96f4ca4bf1
Merge branch 'master' into FixBindingStackOverflow
9 years ago
danwalmsley
9af1b36f87
Merge pull request #1222 from AvaloniaUI/fixes/textbox-init-order
Bind TextPresenter.Text before CaretIndex.
9 years ago
Steven Kirk
33b57118cf
Bind TextPresenter.Text before CaretIndex.
Otherwise if `TextBox.CaretIndex` is set before the `TextBox`'s template is applied then it will be coerced to null on the `TextPresenter` when created as `Text` will still be null at this point.
9 years ago
Steven Kirk
b2886a5e8a
Merge branch 'master' into FixBindingStackOverflow
9 years ago
danwalmsley
237c319032
Merge pull request #1217 from AvaloniaUI/fixes/1169-toggle-dropdown-open
Fix DropDown popup opening.
9 years ago
danwalmsley
236bc4f1f6
Merge branch 'master' into fixes/1169-toggle-dropdown-open
9 years ago
danwalmsley
72ddb16748
Merge pull request #1210 from AvaloniaUI/fixes/1203-clear-capture-on-control-removed
Clear mouse capture when control removed.
9 years ago
Steven Kirk
268587c432
Fix DropDown popup opening.
When the `DropDown` control is clicked, toggle the opening of the popup.
Fixes #1169 .
9 years ago
danwalmsley
48f871cf37
Merge branch 'master' into fixes/1203-clear-capture-on-control-removed
9 years ago
Steven Kirk
83b21aab08
Disable osx builds
They're failing and not that useful anyway.
9 years ago
danwalmsley
e32eacd222
Merge branch 'master' into fixes/1203-clear-capture-on-control-removed
9 years ago
Steven Kirk
0b2259ba2d
Merge pull request #1216 from AvaloniaUI/update-replace-scripts
update replace scripts.
9 years ago
Unknown
30a31006cc
update linux and release replace scripts.
9 years ago
Steven Kirk
aa2980b8c8
Don't return detached controls in HitTest.
If a control has been detached from the visual tree but the scene hasn't yet been updated, don't return the control as part of a hit-test.
9 years ago
Artjom
3cb888f430
Update readme.md
9 years ago
Dan Walmsley
fbba93f421
update replace scripts.
9 years ago
Steven Kirk
2c61d17bc3
Always raise visual tree attach/detach events.
Previously, if the user overrode `OnAttachedToVisualTree` or `OnDetachedFromVisualTree` and forgot to call the base implementation, the events wouldn't be raised. It's very important that these events get raised so moved the code to raise them to `OnAttachedToVisualTreeCore`/`OnDetachedFromVisualTreeCore`.
9 years ago
danwalmsley
bf099cc7b8
Merge branch 'master' into fixes/1203-clear-capture-on-control-removed
9 years ago
Steven Kirk
3402456284
Always raise logical tree attach/detach events.
Previously, if the user overrode `OnAttachedToLogicalTree` or `OnDetachedFromLogicalTree` and forgot to call the base implementation, the events wouldn't be raised. It's very important that these events get raised so moved the code to raise them to `OnAttachedToLogicalTreeCore`/`OnDetachedFromLogicalTreeCore`.
9 years ago
danwalmsley
fea715b21c
Merge pull request #1205 from AvaloniaUI/fixes/1192-incorrect-logical-root
Report correct root in logical tree attach/detach.
9 years ago
danwalmsley
27105b9f79
Merge branch 'master' into fixes/1192-incorrect-logical-root
9 years ago
danwalmsley
05855d3c70
Merge branch 'master' into fixes/1203-clear-capture-on-control-removed
9 years ago
danwalmsley
cc77bea851
Merge pull request #1206 from AvaloniaUI/fixes/1171-propagate-clipbounds
Propagate ClipBounds to child nodes
9 years ago
Jeremy Koritzinsky
54e8187a70
Fix StackOverflow in Negation Binding. Fixes #1213
9 years ago
Jeremy Koritzinsky
8c3a19bb9a
Upgrade XUnit. (Fixes VS Test Explorer integration for the solution)
9 years ago
danwalmsley
f9db4005f7
Merge branch 'master' into fixes/1171-propagate-clipbounds
9 years ago
Steven Kirk
a0f4d3fb05
Ignore Avalonia.Designer.HostApp in ncrunch.
9 years ago
Steven Kirk
763775fa82
Clear mouse capture when control removed.
When a captured control is removed from the visual tree, clear the mouse capture.
Note that our capture logic needs to be improved - it shouldn't be possible to capture a non-visible or non-enabled control. This doesn't address that but it does fix the crash in #1203 .
Fixes #1203
9 years ago
Steven Kirk
dc7740554e
Propagate ClipBounds to child nodes.
When a scenegraph node's ClipBounds changes, ensure that that change is propagated to child nodes.
Fixes #1171
9 years ago
Steven Kirk
d1eb0512bb
Added failing test for #1171 .
9 years ago
Steven Kirk
815d3f719e
Report correct root in logical tree attach/detach.
Fixes #1192 .
9 years ago
Steven Kirk
a899892d96
Ignore RemoteTest.
9 years ago
Steven Kirk
f9451bdf4e
Merge pull request #1204 from AvaloniaUI/fixes/invalid-rectangle-arrange-overide
[Scrollbar] dont try and arrange the thumb and buttons if the extent …
9 years ago
danwalmsley
ccc3410cfc
Merge branch 'master' into fixes/invalid-rectangle-arrange-overide
9 years ago