Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Bevy Cosmic Edit
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Microhacks
Bevy Forks
Bevy Cosmic Edit
Commits
95ea9da0
Commit
95ea9da0
authored
11 months ago
by
sam edelsten
Browse files
Options
Downloads
Patches
Plain Diff
tidy up merge, remove refrences to `CursorConfig`
parent
ef77306c
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
examples/every_option.rs
+1
-1
1 addition, 1 deletion
examples/every_option.rs
examples/password.rs
+1
-4
1 addition, 4 deletions
examples/password.rs
examples/sprite_and_ui_clickable.rs
+1
-4
1 addition, 4 deletions
examples/sprite_and_ui_clickable.rs
src/lib.rs
+0
-1
0 additions, 1 deletion
src/lib.rs
with
3 additions
and
10 deletions
examples/every_option.rs
+
1
−
1
View file @
95ea9da0
...
@@ -26,6 +26,7 @@ fn setup(mut commands: Commands, mut font_system: ResMut<CosmicFontSystem>) {
...
@@ -26,6 +26,7 @@ fn setup(mut commands: Commands, mut font_system: ResMut<CosmicFontSystem>) {
max_chars
:
MaxChars
(
15
),
max_chars
:
MaxChars
(
15
),
max_lines
:
MaxLines
(
1
),
max_lines
:
MaxLines
(
1
),
mode
:
CosmicWrap
::
Wrap
,
mode
:
CosmicWrap
::
Wrap
,
hover_cursor
:
HoverCursor
(
CursorIcon
::
Pointer
),
// CosmicEdit draws to this spritebundle
// CosmicEdit draws to this spritebundle
sprite_bundle
:
SpriteBundle
{
sprite_bundle
:
SpriteBundle
{
sprite
:
Sprite
{
sprite
:
Sprite
{
...
@@ -42,7 +43,6 @@ fn setup(mut commands: Commands, mut font_system: ResMut<CosmicFontSystem>) {
...
@@ -42,7 +43,6 @@ fn setup(mut commands: Commands, mut font_system: ResMut<CosmicFontSystem>) {
// Computed fields
// Computed fields
padding
:
Default
::
default
(),
padding
:
Default
::
default
(),
widget_size
:
Default
::
default
(),
widget_size
:
Default
::
default
(),
hover_cursor
:
Default
::
default
(),
})
})
.id
();
.id
();
...
...
This diff is collapsed.
Click to expand it.
examples/password.rs
+
1
−
4
View file @
95ea9da0
...
@@ -29,10 +29,7 @@ fn setup(mut commands: Commands) {
...
@@ -29,10 +29,7 @@ fn setup(mut commands: Commands) {
fn
main
()
{
fn
main
()
{
App
::
new
()
App
::
new
()
.add_plugins
(
DefaultPlugins
)
.add_plugins
(
DefaultPlugins
)
.add_plugins
(
CosmicEditPlugin
{
.add_plugins
(
CosmicEditPlugin
{
..
default
()
})
change_cursor
:
CursorConfig
::
Default
,
..
default
()
})
.add_systems
(
Startup
,
setup
)
.add_systems
(
Startup
,
setup
)
.add_systems
(
.add_systems
(
Update
,
Update
,
...
...
This diff is collapsed.
Click to expand it.
examples/sprite_and_ui_clickable.rs
+
1
−
4
View file @
95ea9da0
...
@@ -68,10 +68,7 @@ fn ev_test(
...
@@ -68,10 +68,7 @@ fn ev_test(
fn
main
()
{
fn
main
()
{
App
::
new
()
App
::
new
()
.add_plugins
(
DefaultPlugins
)
.add_plugins
(
DefaultPlugins
)
.add_plugins
(
CosmicEditPlugin
{
.add_plugins
(
CosmicEditPlugin
{
..
default
()
})
change_cursor
:
CursorConfig
::
Default
,
..
default
()
})
.add_systems
(
Startup
,
setup
)
.add_systems
(
Startup
,
setup
)
.add_systems
(
.add_systems
(
Update
,
Update
,
...
...
This diff is collapsed.
Click to expand it.
src/lib.rs
+
0
−
1
View file @
95ea9da0
...
@@ -116,7 +116,6 @@ pub use widget::*;
...
@@ -116,7 +116,6 @@ pub use widget::*;
#[derive(Default)]
#[derive(Default)]
pub
struct
CosmicEditPlugin
{
pub
struct
CosmicEditPlugin
{
pub
font_config
:
CosmicFontConfig
,
pub
font_config
:
CosmicFontConfig
,
pub
change_cursor
:
CursorConfig
,
}
}
impl
Plugin
for
CosmicEditPlugin
{
impl
Plugin
for
CosmicEditPlugin
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment