This commit is contained in:
Kovid Goyal 2018-08-24 11:03:30 +05:30
parent 009ef54de7
commit ec9bb2302c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 1 deletions

View File

@ -1099,9 +1099,10 @@ is_ascii_control_char(char x) {
}
- (void)loadMainMenu
{ // removed by Kovid as it generated compiler warnings
{ // removed by Kovid as it generated compiler warnings
}
@end
// Set up the menu bar (manually)

2
kitty/glfw-wrapper.h generated
View File

@ -1133,11 +1133,13 @@ typedef void (* GLFWcursorenterfun)(GLFWwindow*,int);
* @param[in] window The window that received the event.
* @param[in] xoffset The scroll offset along the x-axis.
* @param[in] yoffset The scroll offset along the y-axis.
* @param[in] flags A bit-mask providing extra data about the event. flags & 1 will be true if and only if the offset values are "high-precision". Typically pixel values. Otherwise the offset values are number of lines.
*
* @sa @ref scrolling
* @sa @ref glfwSetScrollCallback
*
* @since Added in version 3.0. Replaces `GLFWmousewheelfun`.
* @since Changed in version 4.0. Added `flags` parameter.
*
* @ingroup input
*/